Skip to content

Commit

Permalink
CI: Fix signtool path
Browse files Browse the repository at this point in the history
  • Loading branch information
ccomrade committed Dec 18, 2022
1 parent 243e289 commit 94b3b18
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,8 @@ jobs:
run: |
Set-Content -Path bundle.txt -Value $env:CODE_SIGNING_PFX
certutil -decode bundle.txt bundle.pfx
signtool sign /fd SHA256 /f bundle.pfx /p "$env:CODE_SIGNING_PFX_PASSWORD" `
$signtool = "C:\Program Files (x86)\Microsoft SDKs\ClickOnce\SignTool\signtool.exe"
& $signtool sign /fd SHA256 /f bundle.pfx /p "$env:CODE_SIGNING_PFX_PASSWORD" `
/tr "http://timestamp.digicert.com" /td SHA256 `
"${{ github.workspace }}/Build32/Release/CryMP-Client32.exe"
Remove-Item bundle.*
Expand Down Expand Up @@ -57,7 +58,8 @@ jobs:
run: |
Set-Content -Path bundle.txt -Value $env:CODE_SIGNING_PFX
certutil -decode bundle.txt bundle.pfx
signtool sign /fd SHA256 /f bundle.pfx /p "$env:CODE_SIGNING_PFX_PASSWORD" `
$signtool = "C:\Program Files (x86)\Microsoft SDKs\ClickOnce\SignTool\signtool.exe"
& $signtool sign /fd SHA256 /f bundle.pfx /p "$env:CODE_SIGNING_PFX_PASSWORD" `
/tr "http://timestamp.digicert.com" /td SHA256 `
"${{ github.workspace }}/Build64/Release/CryMP-Client64.exe"
Remove-Item bundle.*
Expand Down

0 comments on commit 94b3b18

Please sign in to comment.