Skip to content

Commit

Permalink
TestSignTool
Browse files Browse the repository at this point in the history
  • Loading branch information
vnoves committed Feb 2, 2024
1 parent c593845 commit 07de668
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,13 @@ jobs:
$dlls = dir -Path .\ -Filter "MeshOpt.dll" -Recurse | %{$_.FullName}
foreach ($dll in $dlls)
{
C:\Program Files (x86)\Windows Kits\10\bin\x64\signtool.exe sign /f "credentials.pfx" /p ${{ secrets.EVERSE_CERTIFICATE_KEY }} /t http://timestamp.digicert.com "$dll"
$signtool = "C:\Program Files (x86)\Windows Kits\10\bin\x64\signtool.exe"
if (Test-Path $signtool) {
Write-Error "Foundound"
} else {
Write-Error "Signtool not found"
}
"C:\Program Files (x86)\Windows Kits\10\bin\x64\signtool.exe" sign /f "credentials.pfx" /p ${{ secrets.EVERSE_CERTIFICATE_KEY }} /t http://timestamp.digicert.com "$dll"
Write-Host $dll
}
Expand Down

0 comments on commit 07de668

Please sign in to comment.