Skip to content

Commit

Permalink
fix: hashes
Browse files Browse the repository at this point in the history
  • Loading branch information
hazcod authored Sep 9, 2022
1 parent 2edb5ca commit 96bdaff
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,8 +69,8 @@ jobs:
id: hash
if: steps.semrel.outputs.version != ''
run: |
echo "Hashes $(ls dist/* | xargs shasum -a256 | base64 -w0)"
echo "::set-output name=hashes::$(ls dist/* | xargs shasum -a256 | base64 -w0)"
echo "Hashes $(find -type f dist/ -exec shasum256 {} \; | base64 -w0)"
echo "::set-output name=hashes::$(find -type f dist/ -exec shasum256 {} \; | base64 -w0)"
provenance:
needs: [goreleaser]
Expand Down

0 comments on commit 96bdaff

Please sign in to comment.