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 df7b950 commit 18f8ac1Copy full SHA for 18f8ac1
.github/workflows/ci-pipeline.yml
@@ -254,12 +254,11 @@ jobs:
254
env:
255
# https://docs.github.com/en/actions/security-guides/security-hardening-for-github-actions#using-an-intermediate-environment-variable
256
TAGS: ${{ steps.meta.outputs.tags }}
257
- DIGEST: ${{ steps.build-and-push.outputs.digest }}
258
# This step uses the identity token to provision an ephemeral certificate
259
# against the sigstore community Fulcio instance.
260
run: |
261
images=""
262
for tag in ${TAGS}; do
263
- images+="${tag}@${DIGEST} "
+ images+="${tag}@sha256:$(docker buildx imagetools inspect --format '{{.Digest}}' ${tag}) "
264
done
265
cosign sign --yes ${images}
0 commit comments