We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8042e9a commit 16f1281Copy full SHA for 16f1281
.github/workflows/image.yml
@@ -2,6 +2,7 @@
2
name: 'build container images'
3
4
on:
5
+ pull_request:
6
push:
7
branches:
8
- master
@@ -55,7 +56,7 @@ jobs:
55
56
registry: quay.io
57
username: ${{ secrets.QUAY_USERNAME }}
58
password: ${{ secrets.QUAY_PASSWORD }}
- - name: Build PRs
59
+ - name: Build
60
if: github.event_name != 'pull_request'
61
uses: docker/build-push-action@v4
62
with:
@@ -65,7 +66,7 @@ jobs:
65
66
platforms: linux/amd64,linux/arm64,linux/arm
67
push: true
68
tags: ${{ steps.prep.outputs.tags }}
- - name: Build
69
+ - name: Build PRs
70
if: github.event_name == 'pull_request'
71
72
0 commit comments