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.
2 parents c4507ce + 9ba9e5c commit 0a853c5Copy full SHA for 0a853c5
.circleci/config.yml
@@ -119,14 +119,14 @@ jobs:
119
dpkg -i cosign_1.8.0_amd64.deb
120
- run:
121
name: Get Cosign Key
122
- command: echo $COSIGN_KEY > cosign.key
+ command: echo $COSIGN_KEY | base64 -d > cosign.key
123
124
name: Attach attestations to image
125
command: |
126
for ARCH in amd64 arm64v8
127
do
128
IMAGE="sylabsio/scs-build:${CIRCLE_TAG}-${ARCH}"
129
- syft attest --key ./cosign.key -o cyclonedx-json "${IMAGE}" > sbom.att.json
+ syft attest -v --key ./cosign.key -o cyclonedx-json "${IMAGE}" > sbom.att.json
130
cosign attach attestation --attestation sbom.att.json "${IMAGE}"
131
done
132
0 commit comments