mirror of
https://github.com/R2Northstar/Northstar
synced 2026-08-23 20:23:04 -04:00
Print checksum to job summary (#589)
Makes it easier to copy out for making PR to Docker image repo
This commit is contained in:
parent
05a32ee30e
commit
abf59ba5fe
1 changed files with 5 additions and 1 deletions
6
.github/workflows/build.yml
vendored
6
.github/workflows/build.yml
vendored
|
|
@ -95,7 +95,11 @@ jobs:
|
|||
mv Northstar.release.${{ env.NORTHSTAR_VERSION }}.zip ../
|
||||
- name: Compute SHA-512 checksum
|
||||
run: |
|
||||
sha512sum Northstar.release.${{ env.NORTHSTAR_VERSION }}.zip
|
||||
ZIP_CHECKSUM=$(sha512sum Northstar.release.${{ env.NORTHSTAR_VERSION }}.zip)
|
||||
echo $ZIP_CHECKSUM
|
||||
echo "```" >> $GITHUB_STEP_SUMMARY
|
||||
echo $ZIP_CHECKSUM >> $GITHUB_STEP_SUMMARY
|
||||
echo "```" >> $GITHUB_STEP_SUMMARY
|
||||
- name: Upload zip to release draft
|
||||
uses: softprops/action-gh-release@v1
|
||||
if: startsWith(github.ref, 'refs/tags/v') && !contains(env.NORTHSTAR_VERSION, '-rc')
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue