Fixed missing push of tagged Docker image on publish

This commit is contained in:
squidfunk 2021-02-23 10:04:43 +01:00
parent d0b34b07d6
commit e6e3215db1

View File

@ -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 }}