Skip to content

Commit

Permalink
Fix push event
Browse files Browse the repository at this point in the history
Currently, tag (release) builds of the Docker image wouldn't be pushed.
  • Loading branch information
fwcd committed Sep 11, 2023
1 parent 655c2d7 commit a7bc925
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,6 @@ jobs:
with:
context: .
platforms: linux/amd64,linux/arm64/v8
push: ${{ github.ref == 'refs/heads/main' }}
push: ${{ github.event_name != 'pull_request' }}
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}

0 comments on commit a7bc925

Please sign in to comment.