File tree Expand file tree Collapse file tree 1 file changed +2
-1
lines changed
Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Original file line number Diff line number Diff line change 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
You can’t perform that action at this time.
0 commit comments