Skip to content

Commit

Permalink
feat: Add built image to dockerhub
Browse files Browse the repository at this point in the history
  • Loading branch information
Aviortheking authored Nov 30, 2023
1 parent 1eb831f commit 33864d8
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion .github/workflows/build_docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,9 @@ jobs:
id: meta
uses: docker/metadata-action@v5
with:
images: ghcr.io/${{ github.repository }}
images: |
ghcr.io/${{ github.repository }}
tcgdex/bot
tags: |
type=edge
type=ref,event=pr
Expand All @@ -33,6 +35,12 @@ jobs:
type=semver,pattern=latest
- name: Login to Docker Hub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USER }}
password: ${{ secrets.DOCKERHUB_TOKEN }}

- name: Login to Github Packages
uses: docker/login-action@v3
with:
registry: ghcr.io
Expand Down

0 comments on commit 33864d8

Please sign in to comment.