actions: attempt windows fix

This commit is contained in:
Jay Lee
2023-10-11 09:38:20 -04:00
committed by GitHub
parent 6ec24c87cd
commit 1393ed3ca6

View File

@@ -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'