Skip to content

Commit

Permalink
Upload hashes also
Browse files Browse the repository at this point in the history
  • Loading branch information
P-ict0 committed Jun 22, 2024
1 parent 8f90930 commit 1207eaa
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,11 @@ jobs:
- name: Get version
id: get-release-version
run: echo "VERSION=v$(cat VERSION)" >> $GITHUB_ENV

- name: Calculate file hash
id: hash
run: |
sha256sum syn-flood > syn-flood.sha256
- name: Create Release
id: create_release
Expand All @@ -39,7 +44,9 @@ jobs:
- name: Upload binary to GitHub Release
uses: softprops/action-gh-release@v1
with:
files: syn-flood
files: |
syn-flood
syn-flood.sha256
tag_name: ${{ env.VERSION }}
draft: false
prerelease: false
Expand Down

0 comments on commit 1207eaa

Please sign in to comment.