From 3a7c470e6ebc6a2f7d93a719c9f602190d4e214b Mon Sep 17 00:00:00 2001 From: Jay Lee Date: Tue, 3 Mar 2026 15:45:02 -0500 Subject: [PATCH] Refactor build workflow for executable handling Updated the build workflow to move executable files and adjust artifact paths. --- .github/workflows/build.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 2c36171b..eba76c94 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -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'