Skip to content

Commit

Permalink
ci: Fix build naming and descriptions
Browse files Browse the repository at this point in the history
  • Loading branch information
qdot committed Oct 14, 2023
1 parent 248304e commit 4255dcb
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,9 @@ jobs:
- 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
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 }}'
Expand All @@ -29,22 +30,23 @@ jobs:
files: |
*.exe
*.dll
description: 'Sign Intiface Central Executable'
description: 'Intiface Game Haptics Router 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
- 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: 'Sign Intiface Central Installer'
description: 'Intiface Game Haptics Router Installer'
- name: Archive production artifacts
uses: actions/upload-artifact@v3
with:
Expand Down

0 comments on commit 4255dcb

Please sign in to comment.