Skip to content

Commit

Permalink
Add push event for docker image
Browse files Browse the repository at this point in the history
  • Loading branch information
TheBurchLog committed Dec 3, 2024
1 parent 2f6baa0 commit 2f41291
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/deploy-docker-push.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: Deploy Docker Push

on: workflow_dispatch

jobs:
Docker:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2

- name: Login to DockerHub
uses: docker/login-action@v1
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_PASSWORD }}

- name: Build Images
run: make release TAG=latest

0 comments on commit 2f41291

Please sign in to comment.