From 1393ed3ca654977b5f9fbb74719a318337553796 Mon Sep 17 00:00:00 2001 From: Jay Lee Date: Wed, 11 Oct 2023 09:38:20 -0400 Subject: [PATCH] actions: attempt windows fix --- .github/workflows/build.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 9f85baad..fc7cff8a 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -518,7 +518,8 @@ jobs: elif [[ "${RUNNER_OS}" == "Windows" ]]; then # Work around issue where PyInstaller picks up python3.dll from other Python versions # https://github.com/pyinstaller/pyinstaller/issues/7102 - export PATH="/usr/bin" + # export PATH="/usr/bin" + true else export gampath=$(realpath "${gampath}") fi @@ -531,6 +532,7 @@ jobs: export distpath="./dist/gam" export gampath="${distpath}" "${PYTHON}" -m PyInstaller --clean --noconfirm --distpath="${distpath}" gam.spec + cat build\gam\warn-gam.txt - name: Copy extra package files if: matrix.goal == 'build'