Skip to content

Commit af5f6f6

Browse files
authored
fix: Make a push if push on master (#39)
1 parent 751a25e commit af5f6f6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/main.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ jobs:
6767
with:
6868
context: ./src/dockerfiles/${{ matrix.image }}
6969
file: ./src/dockerfiles/${{ matrix.image }}/Dockerfile
70-
push: ${{ ! github.event_name == 'pull_request' }}
70+
push: ${{ github.ref == 'refs/heads/main' && github.event_name == 'push' }}
7171
tags: ${{ steps.meta.outputs.tags }}
7272
labels: ${{ steps.meta.outputs.labels }}
7373
platforms: linux/amd64,linux/arm64

0 commit comments

Comments
 (0)