Skip to content

Commit

Permalink
Add archive sha256sum to releases
Browse files Browse the repository at this point in the history
  • Loading branch information
res2k committed Dec 29, 2024
1 parent bd3d41d commit fd4fff8
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,8 +60,14 @@ jobs:
name: Make release archive
id: release_archive
if: startsWith(github.ref, 'refs/tags/')
- shell: bash
run: |
sha256sum ${{ steps.release_archive_name.outputs.RELEASE_ARCHIVE }} > sha256sum.txt
name: Compute sha256sum
- name: Create release
uses: softprops/action-gh-release@v1
if: startsWith(github.ref, 'refs/tags/')
with:
files: ${{ steps.release_archive_name.outputs.RELEASE_ARCHIVE }}
files: |
${{ steps.release_archive_name.outputs.RELEASE_ARCHIVE }}
sha256sum.txt

0 comments on commit fd4fff8

Please sign in to comment.