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
91da7d7d1b Update paths in CI config (#332)
Some directories got changed as part of refactor
2022-09-01 01:24:27 +02:00
GeckoEidechse
dc05ebfa9c Enforce tags start with v for CI to run (#331)
Basically just a small safeguard to prevent running CI on accidentally
pushed invalid tag.
2022-09-01 01:17:23 +02:00
Kyle Gospodnetich
a66132db28 Add licenses for Lato and Northstar Mono (Modified Fira Mono Regular) fonts (#314) 2022-07-22 00:38:49 +02:00
2 changed files with 159 additions and 4 deletions

View File

@@ -2,7 +2,7 @@ name: Build
on:
push:
tags:
- '*'
- 'v*'
workflow_dispatch:
inputs:
job:
@@ -34,9 +34,9 @@ jobs:
shell: bash
working-directory: northstar-launcher
run: |
sed -i 's/DEV/${{ env.NORTHSTAR_VERSION }}/g' LauncherInjector/resources.rc
sed -i 's/DEV/${{ env.NORTHSTAR_VERSION }}/g' NorthstarLauncher/resources.rc
FILEVERSION=$(echo ${{ env.NORTHSTAR_VERSION }} | tr '.' ',' | sed -E 's/-rc[0-9]+//' | tr -d '[:alpha:]')
sed -i "s/0,0,0,1/${FILEVERSION}/g" NorthstarDedicatedTest/ns_version.h
sed -i "s/0,0,0,1/${FILEVERSION}/g" NorthstarDLL/ns_version.h
- name: Build
working-directory: northstar-launcher
run: |

File diff suppressed because one or more lines are too long