Skip to content

Commit

Permalink
Include a checksums.txt file in release artifacts
Browse files Browse the repository at this point in the history
  • Loading branch information
julienvincent committed Nov 13, 2023
1 parent 9043d71 commit da57a05
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,14 @@ jobs:
name: kl-native-images
path: bin

- name: Calculate checksums
runs: |
for file in bin/*; do
shasum -a 256 "$file" >> checksums.txt
done
mv checksums.txt bin/checksums.txt
- uses: actions/setup-java@v2
with:
distribution: 'temurin'
Expand Down

0 comments on commit da57a05

Please sign in to comment.