Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 8 additions & 1 deletion .github/workflows/cli.yml
Original file line number Diff line number Diff line change
Expand Up @@ -335,8 +335,15 @@ jobs:
exit 1
fi
cp "$BUNDLE" cli/dist/checksums.txt.sigstore.json

# Extract DSSE envelope as .intoto.jsonl for OpenSSF Scorecard
# provenance detection (Scorecard recognises .intoto.jsonl but
# classifies .sigstore.json as a signature, not provenance).
jq -c '.dsseEnvelope' "$BUNDLE" > cli/dist/checksums.txt.intoto.jsonl
Comment thread
coderabbitai[bot] marked this conversation as resolved.
Outdated

gh release upload "$TAG" --repo "$GITHUB_REPOSITORY" --clobber \
cli/dist/checksums.txt.sigstore.json
cli/dist/checksums.txt.sigstore.json \
cli/dist/checksums.txt.intoto.jsonl

- name: Append CLI installation and checksums to release notes
env:
Expand Down
Loading