We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fb53ab1 commit e586f57Copy full SHA for e586f57
.github/workflows/Tauri-Release.yml
@@ -210,13 +210,11 @@ jobs:
210
if: matrix.os == 'windows-2022'
211
shell: powershell
212
run: |
213
- $sdkPath = "C:\Program Files (x86)\Windows Kits\10\bin"
214
- $signtool = Get-ChildItem -Path $sdkPath -Recurse -Filter signtool.exe | Select-Object -First 1
215
- if (-not $signtool) {
+ $signtool = "C:\Program Files (x86)\Windows Kits\10\bin\x64\signtool.exe"
+ if (-not (Test-Path $signtool)) {
216
Write-Error "signtool.exe not found"
217
exit 1
218
}
219
- echo "$($signtool.Directory.FullName)" >> $env:GITHUB_PATH
220
& $signtool.FullName /?
221
222
0 commit comments