Skip to content

Commit

Permalink
Add fix for slsa
Browse files Browse the repository at this point in the history
  • Loading branch information
mlieberman85 committed Apr 14, 2024
1 parent 2986c74 commit a7917c4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/releases.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,11 +62,11 @@ jobs:
id: run-cargo-release
run: cargo build --verbose --release && cargo test --verbose
# TODO: Don't make this hardcoded.
- name: Generate hashes and extract image digest
- name: Generate hashes
id: hash
if: startsWith(github.ref, 'refs/tags/')
run: |
hashes=sha256sum target/release/skootrs | base64 -w0
hashes=$(sha256sum target/release/skootrs | base64 -w0)
echo "hashes=$hashes" >> $GITHUB_OUTPUT
sbom:
Expand Down

0 comments on commit a7917c4

Please sign in to comment.