Changeset 18531 in josm for trunk/.github/workflows/ant.yml


Ignore:
Timestamp:
2022-08-01T20:38:58+02:00 (2 years ago)
Author:
taylor.smock
Message:

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.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/.github/workflows/ant.yml

    r18490 r18531  
    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
Note: See TracChangeset for help on using the changeset viewer.