Skip to content

Commit

Permalink
Add check sum for binaries
Browse files Browse the repository at this point in the history
  • Loading branch information
nroduit committed May 9, 2024
1 parent 5496c39 commit 7cb8d15
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .github/workflows/build-installer.yml
Original file line number Diff line number Diff line change
Expand Up @@ -223,6 +223,15 @@ jobs:
xcrun stapler staple \
"final-dist/${{ env.NAME }}-${{ env.WEASIS_CLEAN_VERSION }}-${{ matrix.warc }}.pkg"
- name: "Add checksum sha256 file"
shell: bash
run: |
for file in "final-dist/*"; do
if [[ -f "$file" ]]; then
sha256sum "$file" >> "$file.sha256"
fi
done
- name: Upload the installer
uses: actions/upload-artifact@v3
with:
Expand Down

0 comments on commit 7cb8d15

Please sign in to comment.