Add certificate to sign files

This commit is contained in:
Gerrit 2023-07-12 17:38:55 +02:00
parent 8916b0c348
commit 747b509a0c
6 changed files with 49 additions and 4 deletions

View file

@ -13,6 +13,7 @@ jobs:
env:
solution: AmagnoVirtualPrinter.sln
configuration: Release
certificatepassword: ${{ secrets.CERTIFICATEPASSWORD }}
steps:
- name: Checkout
uses: actions/checkout@v3
@ -24,8 +25,11 @@ jobs:
run: msbuild $env:solution /m /t:Restore /p:Configuration=$env:configuration
- name: Build solution
run: msbuild $env:solution /m /t:Rebuild /p:Configuration=$env:configuration
- name: Create msi from PowerShell Script
- name: Create msi with PowerShell Script
run: pwsh -command ".\$GITHUB_WORKSPACE\create_msi.ps1"
- name: Sign msi with PowerShell Script
shell: powershell
run: .\$GITHUB_WORKSPACE\sign_files.ps1 -Path .\$GITHUB_WORKSPACE\Files -CertPath .\$GITHUB_WORKSPACE\codeSigningCert.pfx -CertPwd $env:SUPER_SECRET
- name: Upload files artifact
uses: actions/upload-artifact@v3
with: