Skip to content
This repository has been archived by the owner on Dec 6, 2024. It is now read-only.

Commit

Permalink
Create main.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
Cod3Uchiha authored Jul 4, 2024
1 parent a28b0d4 commit 9ceb561
Showing 1 changed file with 35 additions and 0 deletions.
35 changes: 35 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
name: Publish Docker Image to Docker Hub

on:

push:

branches: ['master']

jobs:

build:

runs-on: ubuntu-latest

steps:

- uses: actions/checkout@v3

- name: Log in to Docker Hub

uses: docker/login-action@f054a8b539a109f9f41c372932f1ae047eff08c9

with:

username: ${{ secrets.DOCKER_USERNAME }}

password: ${{ secrets.DOCKER_PASSWORD }}

- name: Build the Docker image

run: docker build . --file Dockerfile --tag ${{ secrets.DOCKER_USERNAME }}/cheemsbot11oh

- name: Docker Push

run: docker push ${{ secrets.DOCKER_USERNAME }}/cheemsbot11oh

0 comments on commit 9ceb561

Please sign in to comment.