Skip to content

Commit

Permalink
feat: add a checksum to released files
Browse files Browse the repository at this point in the history
  • Loading branch information
mpolitzer committed Sep 28, 2023
1 parent 647549d commit caed855
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,12 @@ jobs:
with:
path: artifacts/*

- name: Checksum artifacts
run: |
for f in artifacts/* do
sha512sum $f > $f.sha512
done
- uses: softprops/action-gh-release@v1
if: startsWith(github.ref, 'refs/tags/v')
with:
Expand Down

0 comments on commit caed855

Please sign in to comment.