Skip to content

Commit a7bc925

Browse files
committed
Fix push event
Currently, tag (release) builds of the Docker image wouldn't be pushed.
1 parent 655c2d7 commit a7bc925

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/docker.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,6 @@ jobs:
3333
with:
3434
context: .
3535
platforms: linux/amd64,linux/arm64/v8
36-
push: ${{ github.ref == 'refs/heads/main' }}
36+
push: ${{ github.event_name != 'pull_request' }}
3737
tags: ${{ steps.meta.outputs.tags }}
3838
labels: ${{ steps.meta.outputs.labels }}

0 commit comments

Comments
 (0)