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 2347949 commit 69bf394Copy full SHA for 69bf394
.github/workflows/build.yml
@@ -151,6 +151,13 @@ jobs:
151
labels: ${{ steps.meta.outputs.labels }}
152
- name: Generate artifact attestation
153
uses: actions/attest-build-provenance@v1
154
+ if: ${{ matrix.file == null }}
155
with:
156
subject-name: ${{ matrix.image }}
157
subject-digest: ${{ steps.push.outputs.digest }}
158
+ - name: Generate artifact attestation
159
+ uses: actions/attest-build-provenance@v1
160
+ if: ${{ matrix.file != null }}
161
+ with:
162
+ subject-name: ${{ matrix.image }}
163
+ subject-digest: ${{ steps.pushWithFile.outputs.digest }}
0 commit comments