Skip to content

Commit

Permalink
Create main.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
itzmzn authored Mar 3, 2024
1 parent a51a0f3 commit 2293c0b
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@343f7c4344506bcbf9b4de18042ae17996df046d

with:

username: ${{ secrets.DOCKER_USERNAME }}

password: ${{ secrets.DOCKER_PASSWORD }}

- name: Build the Docker image

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

- name: Docker Push

run: docker push ${{ secrets.DOCKER_USERNAME }}/zyronixbot-v1

0 comments on commit 2293c0b

Please sign in to comment.