We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8263f5f commit 4b0463bCopy full SHA for 4b0463b
1 file changed
.github/workflows/build-release.yml
@@ -138,7 +138,9 @@ jobs:
138
Write-Error "Installer exe not found!"
139
exit 1
140
}
141
- $signtoolPath = Get-ChildItem -Path "C:\Program Files (x86)\Windows Kits\10\bin" -Recurse -Filter "signtool.exe" | Select-Object -First 1 -ExpandProperty FullName
+ $signtoolPath = Get-ChildItem -Path "C:\Program Files (x86)\Windows Kits\10\bin" -Recurse -Filter "signtool.exe" |
142
+ Where-Object { $_.DirectoryName -like "*\x64" } |
143
+ Select-Object -First 1 -ExpandProperty FullName
144
if ($null -eq $signtoolPath) {
145
Write-Error "signtool.exe not found!"
146
0 commit comments