1
mirror of https://github.com/R2Northstar/Northstar synced 2025-09-25 11:30:50 +02:00

Compare commits

...

3 Commits

Author SHA1 Message Date
GeckoEidechse
ee9239f4ae Rename Action from Build to Release (#585)
to better reflect what it does
2023-12-14 15:00:26 +01:00
GeckoEidechse
cfc1498753 Calculate checksum twice (#591)
build: Calculate checksum twice
Instead of storing result in env var.
2023-11-19 22:32:32 +01:00
GeckoEidechse
abf59ba5fe Print checksum to job summary (#589)
Makes it easier to copy out for making PR to Docker image repo
2023-11-17 19:57:12 +01:00

View File

@@ -1,4 +1,4 @@
name: Build
name: Release
on:
push:
tags:
@@ -96,6 +96,9 @@ jobs:
- name: Compute SHA-512 checksum
run: |
sha512sum Northstar.release.${{ env.NORTHSTAR_VERSION }}.zip
echo "```" >> $GITHUB_STEP_SUMMARY
sha512sum Northstar.release.${{ env.NORTHSTAR_VERSION }}.zip >> $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')