Skip to content

Commit

Permalink
Merge pull request #14 from dpolakovics/13-generate-release-hashes
Browse files Browse the repository at this point in the history
feat: add release checksums
  • Loading branch information
dpolakovics authored Nov 12, 2024
2 parents 054125f + 8b6b021 commit 96bf725
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -173,3 +173,19 @@ jobs:
asset_path: SoundscapeSync.app.zip
asset_name: MacOS.zip
asset_content_type: application/zip

- name: Generate checksum
uses: jmgilman/actions-generate-checksum@v1
with:
patterns: |
SoundscapeSync.exe
SoundscapeSync.app.zip
- name: Upload checksum
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: checksum.txt
asset_name: checksum.txt
asset_content_type: text/plain

0 comments on commit 96bf725

Please sign in to comment.