Refactor Inno Setup command to use variable for signtool

This commit is contained in:
Jay Lee
2026-03-03 14:22:28 -05:00
committed by GitHub
parent aef3b23061
commit fec061c250

View File

@@ -776,7 +776,8 @@ jobs:
if: runner.os == 'Windows' && matrix.goal != 'test'
run: |
choco install innosetup
iscc /S"gamsigntool='C:\Program Files (x86)\Windows Kits\10\bin\10.0.26100.0\x64\signtool.exe' verify /pa /v \"\$f\"" gam.iss
export signtool="C:\Program Files (x86)\Windows Kits\10\bin\10.0.26100.0\x64\signtool.exe"
iscc /S"gamsigntool=$signtool verify /pa /v \"\$f\"" gam.iss
#- name: Windows package MSI
# if: runner.os == 'Windows' && matrix.goal != 'test'