Skip to content

Commit

Permalink
added workflow to compute the checksum
Browse files Browse the repository at this point in the history
  • Loading branch information
ypujante committed Dec 22, 2024
1 parent 3cb29a1 commit de789ab
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 1 deletion.
19 changes: 19 additions & 0 deletions .github/workflows/compute-checksum.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Compute SHA-256 on Release

on:
release:
types: [ published ]

jobs:
compute-checksum:
runs-on: ubuntu-latest

steps:
- name: Compute SHA-256 checksum
run: |
curl -sfL https://github.com/${{ github.repository }}/archive/refs/tags/${{ github.event.release.tag_name }}.zip | sha256sum > ${{ github.event.release.tag_name }}.zip_sha256.txt
- name: Upload checksum to release
uses: softprops/action-gh-release@v2
with:
files: ${{ github.event.release.tag_name }}.zip_sha256.txt
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -334,7 +334,7 @@ It is strongly recommended checking the [re-blank-plugin](https://github.com/pon

Release notes
-------------
#### 1.8.0 - 2024/12/21
#### 1.8.0 - 2024/12/22

- Added support for optional patch metadata files (rsmeta) introduced in SDK 4.6.0

Expand Down

0 comments on commit de789ab

Please sign in to comment.