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 7bead63 commit 23815c3Copy full SHA for 23815c3
.github/workflows/build.yml
@@ -111,6 +111,7 @@ jobs:
111
strategy:
112
matrix: ${{ fromJson(needs.prepare.outputs.tasks) }}
113
max-parallel: 5
114
+ fail-fast: false
115
permissions:
116
contents: write
117
packages: write
@@ -249,6 +250,7 @@ jobs:
249
250
name: Generate attestation jobs
251
runs-on: ubuntu-latest
252
needs: build
253
+ if: ${{ always() }}
254
outputs:
255
tasks: ${{ steps.gen-attests.outputs.tasks }}
256
steps:
@@ -267,6 +269,8 @@ jobs:
267
269
imageDigests = {}
268
270
271
for _, content in hashes.items():
272
+ if not content:
273
+ continue
274
for image, digest in json.loads(content).items():
275
imageName = image.split(":")[0]
276
imageDigests[imageName] = imageDigests.get(imageName, [])
0 commit comments