Skip to content

Commit c79ca72

Browse files
author
taylor.smock
committed
Fix signtool.exe path location for GitHub Actions
At time of writing, signtool.exe is not in the `bin\x64` path that it was previously in. Instead, it is in the following paths: * `C:\Program Files (x86)\Windows Kits\10\App Certification Kit` * `C:\Program Files (x86)\Windows Kits\10\bin\$VERSION\$ARCH`, with the following version matrix: * `VERSION`: * `10.0.17763.0` * `10.0.19041.0` * `10.0.20348.0` * `10.0.22000.0` * `10.0.22621.0` * `ARCH`: * `arm` * `arm64` * `x32` * `x64` This uses `App Certification Kit`, as that will presumably be the most stable path for `signtool.exe`. git-svn-id: https://josm.openstreetmap.de/svn/trunk@18531 0c6e7542-c601-0410-84e7-c038aed88b3b
1 parent bf6b2be commit c79ca72

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

.github/workflows/ant.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -162,6 +162,7 @@ jobs:
162162
run: |
163163
echo "C:\Program Files (x86)\WiX Toolset v3.11\bin" >> $GITHUB_PATH
164164
echo "C:\Program Files (x86)\Windows Kits\10\bin\x64" >> $GITHUB_PATH
165+
echo "C:\Program Files (x86)\Windows Kits\10\App Certification Kit" >> $GITHUB_PATH
165166
166167
- name: Build and package for Windows
167168
if: ${{ runner.os == 'windows' && matrix.java != '8' && matrix.java != '11' && always() }}

0 commit comments

Comments
 (0)