Skip to content

Commit

Permalink
Fixed missing push of tagged Docker image on publish
Browse files Browse the repository at this point in the history
  • Loading branch information
squidfunk committed Feb 23, 2021
1 parent d0b34b0 commit e6e3215
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/publish.yml
Expand Up @@ -95,5 +95,5 @@ jobs:
DOCKER_USERNAME: ${{ secrets.DOCKER_USERNAME }}
DOCKER_PASSWORD: ${{ secrets.DOCKER_PASSWORD }}
run: |
docker push ${{ github.event.repository.full_name }}
docker push ghcr.io/${{ github.event.repository.full_name }}
docker push --all-tags ${{ github.event.repository.full_name }}
docker push --all-tags ghcr.io/${{ github.event.repository.full_name }}

0 comments on commit e6e3215

Please sign in to comment.