We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a28b92c commit de4a7e1Copy full SHA for de4a7e1
1 file changed
.github/workflows/winget.yml
@@ -21,6 +21,8 @@ jobs:
21
$ErrorActionPreference = 'Stop'
22
$wingetCreate = Join-Path $env:RUNNER_TEMP 'wingetcreate.exe'
23
Invoke-WebRequest -Uri 'https://aka.ms/wingetcreate/latest' -OutFile $wingetCreate
24
+ $signature = Get-AuthenticodeSignature -FilePath $wingetCreate
25
+ if ($signature.Status -ne 'Valid') { throw "Downloaded wingetcreate.exe has invalid Authenticode signature: $($signature.Status)" }
26
"WINGET_CREATE_EXE=$wingetCreate" | Out-File -FilePath $env:GITHUB_ENV -Encoding utf8 -Append
27
28
- name: Update WinGet manifests
0 commit comments