build: Just make CI build full solution #8
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: GHR CI Build | |
on: | |
push: | |
branches: | |
- dev | |
- master | |
jobs: | |
build-stable: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [windows-latest] | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Add msbuild to PATH | |
uses: microsoft/[email protected] | |
- uses: nuget/setup-nuget@v1 | |
- run: nuget restore IntifaceGameHapticsRouter.sln | |
- name: Build app for release | |
run: msbuild IntifaceGameHapticsRouter.sln -t:rebuild -property:Configuration=Release | |
- uses: dlemstra/code-sign-action@v1 | |
with: | |
certificate: '${{ secrets.NPLABS_WINDOWS_202205_CERT }}' | |
password: '${{ secrets.NPLABS_WINDOWS_202205_KEY }}' | |
folder: '.\IntifaceGameHapticsRouter\bin\Release' | |
recursive: false | |
files: | | |
*.exe | |
*.dll | |
description: 'Sign Intiface Central Executable' | |
- name: Build Innosetup Installer | |
shell: pwsh | |
env: | |
BUILD_VERSION: ${{ github.ref_name }} | |
run: | | |
iscc .\intiface-ghr-installer.iss | |
- uses: dlemstra/code-sign-action@v1 | |
with: | |
certificate: '${{ secrets.NPLABS_WINDOWS_202205_CERT }}' | |
password: '${{ secrets.NPLABS_WINDOWS_202205_KEY }}' | |
folder: '.\installer\' | |
recursive: false | |
files: | | |
intiface-game-haptics-router-installer.exe | |
description: 'Sign Intiface Central Installer' | |
- name: Archive production artifacts | |
uses: actions/upload-artifact@v3 | |
with: | |
name: windows-installer | |
path: | | |
installer/intiface-game-haptics-router-installer.exe |