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

Compare commits

...

3 Commits

Author SHA1 Message Date
GeckoEidechse
4c0f02ba4f Escape backticks in run command (#617)
otherwise bash thinks we're trying to run the command "`"
2024-01-13 17:56:36 +01:00
GeckoEidechse
06f551ef71 Bump NorthstarNavs to v3 (#605)
Co-authored-by: Zanieon <william-millennium@hotmail.com>
2023-12-20 13:13:25 +01:00
GeckoEidechse
ee9239f4ae Rename Action from Build to Release (#585)
to better reflect what it does
2023-12-14 15:00:26 +01:00

View File

@@ -1,4 +1,4 @@
name: Build
name: Release
on:
push:
tags:
@@ -72,7 +72,7 @@ jobs:
uses: actions/checkout@v3
with:
repository: R2Northstar/NorthstarNavs
ref: 'v2'
ref: 'v3'
path: northstar-navs
- name: Navmeshes setup
run: |
@@ -96,9 +96,9 @@ jobs:
- name: Compute SHA-512 checksum
run: |
sha512sum Northstar.release.${{ env.NORTHSTAR_VERSION }}.zip
echo "```" >> $GITHUB_STEP_SUMMARY
echo "\`\`\`" >> $GITHUB_STEP_SUMMARY
sha512sum Northstar.release.${{ env.NORTHSTAR_VERSION }}.zip >> $GITHUB_STEP_SUMMARY
echo "```" >> $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')