File tree Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Original file line number Diff line number Diff line change 62
62
name : Build all images with podman
63
63
runs-on : ubuntu-24.04
64
64
needs : [ detect-existing ]
65
- if : ${{ needs.detect-existing.outputs.DO_BUILD == 'true' }}
66
65
container :
67
66
# travier/podman-action contains newer podman/buildah versions.
68
67
image : quay.io/travier/podman-action
71
70
steps :
72
71
73
72
- name : Initial setup of podman-action container
73
+ if : ${{ needs.detect-existing.outputs.DO_BUILD == 'true' }}
74
74
run : |
75
75
# support cross-arch container building
76
76
podman run --rm --privileged docker.io/tonistiigi/binfmt --install arm64
97
97
fetch-depth : 0
98
98
99
99
- name : build all images
100
+ if : ${{ needs.detect-existing.outputs.DO_BUILD == 'true' }}
100
101
run : |
101
102
# GHA is giving warning with a suggestion to do the following, even
102
103
# though the checkout action should have already done this.
@@ -119,6 +120,7 @@ jobs:
119
120
120
121
# Upload the tarballs just created so they can be used in the next job.
121
122
- name : Upload artifacts
123
+ if : ${{ needs.detect-existing.outputs.DO_BUILD == 'true' }}
122
124
uses : actions/upload-artifact@v4
123
125
with :
124
126
name : image-artifacts
You can’t perform that action at this time.
0 commit comments