Skip to content

Commit

Permalink
fix: generate and include shas for each binary package
Browse files Browse the repository at this point in the history
  • Loading branch information
wassimk committed Jun 8, 2024
1 parent 353a471 commit 66ecf5e
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,10 +54,12 @@ jobs:
path: "elgato-light-*"

- name: Generate SHA-256
run: shasum -a 256 ${{ matrix.platform.name }}
run: echo "$(shasum -a 256 ${{ matrix.platform.name }} | awk '{print $1}') - ${{ matrix.platform.name }}" >> shas.txt

- name: Publish GitHub release
uses: softprops/action-gh-release@v2
with:
draft: true
files: "elgato-light*"
files: |
elgato-light*
shas.txt

0 comments on commit 66ecf5e

Please sign in to comment.