Skip to content

Commit

Permalink
build: Print checksum to job summary
Browse files Browse the repository at this point in the history
Makes it easier to copy out for making PR to Docker image repo
  • Loading branch information
GeckoEidechse committed Nov 16, 2023
1 parent 05a32ee commit 7ebcdd9
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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')
Expand Down

0 comments on commit 7ebcdd9

Please sign in to comment.