Refactor build workflow for executable handling

Updated the build workflow to move executable files and adjust artifact paths.
This commit is contained in:
Jay Lee
2026-03-03 15:45:02 -05:00
committed by GitHub
parent 22feec5136
commit 3a7c470e6e

View File

@@ -778,6 +778,7 @@ jobs:
choco install innosetup
export signtool="C:\Program Files (x86)\Windows Kits\10\bin\10.0.26100.0\x64\signtool.exe"
iscc /S"gamsigntool=$signtool sign /sha1 $WINDOWS_CODESIGN_CERT_HASH /tr http://time.certum.pl /td SHA256 /fd SHA256 /v \$f" gam.iss
mv -v Output/*.exe .
#- name: Windows package MSI
# if: runner.os == 'Windows' && matrix.goal != 'test'
@@ -814,7 +815,7 @@ jobs:
subject-path: |
gam*.tar.xz
gam*.zip
Output/gam-*.exe
gam*.exe
# gam*.msi
- name: Archive tar.xz artifacts
@@ -842,7 +843,7 @@ jobs:
archive: false
if-no-files-found: ignore
path: |
Output/gam-*.exe
gam*.exe
- name: Basic Tests build jobs only
if: matrix.goal != 'test' && steps.cache-python-ssl.outputs.cache-hit != 'true'