Skip to content

Commit

Permalink
Put hash in release body
Browse files Browse the repository at this point in the history
  • Loading branch information
P-ict0 committed Jun 22, 2024
1 parent b49ce55 commit d92e9ef
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ jobs:
id: hash
run: |
sha256sum syn-flood > syn-flood.sha256
echo "BINARY_HASH=$(cat syn-flood.sha256)" >> $GITHUB_ENV
- name: Create Release
id: create_release
Expand All @@ -39,7 +40,10 @@ jobs:
with:
tag_name: ${{ env.VERSION }}
release_name: Release ${{ env.VERSION }}
body: ${{ env.COMMIT_MESSAGE }}
body: |
${{ env.COMMIT_MESSAGE }}
----------------------------------------
Binary sha256: ${{ env.BINARY_HASH }}
draft: false
prerelease: false

Expand Down

0 comments on commit d92e9ef

Please sign in to comment.