Skip to content

Commit f21ebf6

Browse files
committed
Fix digest inspectin command
1 parent 18f8ac1 commit f21ebf6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/ci-pipeline.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -259,6 +259,6 @@ jobs:
259259
run: |
260260
images=""
261261
for tag in ${TAGS}; do
262-
images+="${tag}@sha256:$(docker buildx imagetools inspect --format '{{.Digest}}' ${tag}) "
262+
images+="${tag}@sha256:$(docker buildx imagetools inspect --format '{{json .Manifest.Digest}}' ${tag} | xargs) "
263263
done
264264
cosign sign --yes ${images}

0 commit comments

Comments
 (0)