From 21df31588731fe75a7bdf555bb3f795ccc0180b4 Mon Sep 17 00:00:00 2001 From: Jay Lee Date: Tue, 3 Mar 2026 16:10:23 -0500 Subject: [PATCH] Update executable output path in build workflow Change the output path for the executable files after signing. --- .github/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index eba76c94..b46edc03 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -778,7 +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 . + mv -v Output/*.exe "${gampath}/.." #- name: Windows package MSI # if: runner.os == 'Windows' && matrix.goal != 'test'