Skip to content

Commit ca22924

Browse files
authored
fix(release): Add missing attestation_id (#1747)
Signed-off-by: Javier Rodriguez <[email protected]>
1 parent fbb413b commit ca22924

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/build_and_package.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -106,15 +106,15 @@ jobs:
106106
for entry in $images; do
107107
syft -o cyclonedx-json=/tmp/sbom.cyclonedx.json $entry
108108
chainloop attestation add --value $entry --kind CONTAINER_IMAGE --attestation-id ${{ env.ATTESTATION_ID }}
109-
chainloop attestation add --value /tmp/sbom.cyclonedx.json
109+
chainloop attestation add --value /tmp/sbom.cyclonedx.json --attestation-id ${{ env.ATTESTATION_ID }}
110110
done
111111
112112
# Attest CLI archives
113113
archives=$(cat dist/artifacts.json | jq -r '.[] | select(.type=="Archive") | .path')
114114
for entry in $archives; do
115115
syft -o cyclonedx-json=/tmp/sbom.cyclonedx.json $entry
116116
chainloop attestation add --value $entry --attestation-id ${{ env.ATTESTATION_ID }}
117-
chainloop attestation add --value /tmp/sbom.cyclonedx.json
117+
chainloop attestation add --value /tmp/sbom.cyclonedx.json --attestation-id ${{ env.ATTESTATION_ID }}
118118
done
119119
120120
- name: Bump Chart and Dagger Version

0 commit comments

Comments
 (0)