Skip to content
forked from rehlds/ReHLDS

Commit 902c85e

Browse files
authored
Update build.yml
1 parent bc8d26d commit 902c85e

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,8 @@ jobs:
9494
$pfxBase64 = "${{ secrets.REHLDS_KEY_PFX_B64 }}"
9595
[IO.File]::WriteAllBytes("${{ github.workspace }}\signing-cert.pfx", [Convert]::FromBase64String($pfxBase64))
9696
certutil -f -p "${{ secrets.REHLDS_KEY_PFX_PASS }}" -importPFX "${{ github.workspace }}\signing-cert.pfx"
97-
signtool sign /a /f "${{ github.workspace }}\signing-cert.pfx" /p "${{ secrets.REHLDS_KEY_PFX_PASS }}" /d "ReHLDS" /du "https://rehlds.dev/" /tr "http://timestamp.digicert.com" /td sha512 /fd sha512 /v ${{ github.workspace }}/publish\bin\win32\hlds.exe
97+
$signtool = "C:\Program Files (x86)\Microsoft SDKs\ClickOnce\SignTool\signtool.exe"
98+
$signtool sign /a /f "${{ github.workspace }}\signing-cert.pfx" /p "${{ secrets.REHLDS_KEY_PFX_PASS }}" /d "ReHLDS" /du "https://rehlds.dev/" /tr "http://timestamp.digicert.com" /td sha512 /fd sha512 /v ${{ github.workspace }}/publish\bin\win32\hlds.exe
9899
99100
shell: "pwsh"
100101

0 commit comments

Comments
 (0)