mirror of
https://github.com/Picocrypt/Picocrypt.git
synced 2025-06-28 22:26:13 +02:00
build with sha256 in release body
This commit is contained in:
parent
bc4d029cf0
commit
a90754a67e
3 changed files with 31 additions and 8 deletions
8
.github/workflows/build-linux.yml
vendored
8
.github/workflows/build-linux.yml
vendored
|
@ -72,6 +72,11 @@ jobs:
|
|||
if-no-files-found: error
|
||||
compression-level: 9
|
||||
|
||||
- name: Generate checksums
|
||||
run: |
|
||||
echo "CHECKSUM_PICOCRYPT=$(sha256sum Picocrypt | cut -d ' ' -f1)" >> $GITHUB_ENV
|
||||
echo "CHECKSUM_DEB=$(sha256sum Picocrypt.deb | cut -d ' ' -f1)" >> $GITHUB_ENV
|
||||
|
||||
- name: Release
|
||||
uses: softprops/action-gh-release@v2
|
||||
with:
|
||||
|
@ -80,3 +85,6 @@ jobs:
|
|||
Picocrypt.deb
|
||||
tag_name: ${{ env.VERSION }}
|
||||
make_latest: true
|
||||
body: |
|
||||
**Picocrypt sha256**: ${{ env.CHECKSUM_PICOCRYPT }}
|
||||
**Picocrypt.deb sha256**: ${{ env.CHECKSUM_DEB }}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue