doc: Update version/CHANGELOG for v19 #16
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 | |
tags: | |
- 'v*' | |
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 | |
- name: Sign Game Haptics Router Executable and DLLs | |
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: 'Intiface Game Haptics Router Executable' | |
- name: Build Innosetup Installer | |
shell: pwsh | |
env: | |
BUILD_VERSION: ${{ github.ref_name }} | |
run: | | |
iscc .\intiface-ghr-installer.iss | |
- name: Sign Intiface GHR Installer | |
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: 'Intiface Game Haptics Router Installer' | |
- name: Archive production artifacts | |
uses: actions/upload-artifact@v3 | |
with: | |
name: windows-installer | |
path: | | |
installer/intiface-game-haptics-router-installer.exe |