Skip to content

Merge pull request #4 from Harshraj9812/dependabot/npm_and_yarn/semve… #11

Merge pull request #4 from Harshraj9812/dependabot/npm_and_yarn/semve…

Merge pull request #4 from Harshraj9812/dependabot/npm_and_yarn/semve… #11

Workflow file for this run

name: Update & Publish Docker Image to Docker Hub
on:
push:
branches: ['main']
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: Building the Docker image
run: docker build . --file Dockerfile --tag ${{ secrets.DOCKER_USERNAME }}/discord-bot:latest
- name: Docker Push
run: docker push ${{ secrets.DOCKER_USERNAME }}/discord-bot