From 2ae1d764ddaa27f09debc2d08af8a001dbae639c Mon Sep 17 00:00:00 2001 From: Tim Keller Date: Thu, 26 Jun 2025 21:47:22 -0500 Subject: use whole pyinstller cmd instead of spec file --- .github/workflows/pyinstaller-release.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to '.github') diff --git a/.github/workflows/pyinstaller-release.yaml b/.github/workflows/pyinstaller-release.yaml index 3325100..c1c3700 100644 --- a/.github/workflows/pyinstaller-release.yaml +++ b/.github/workflows/pyinstaller-release.yaml @@ -77,9 +77,9 @@ jobs: TARGET_ARCH: ${{ matrix.arch }} run: | if [ "${{ matrix.arch }}" = "arm64" ]; then - ARCHITECTURE=aarch64 pyinstaller pix.spec + pyinstaller --target-arch aarch64 --onefile --add-data "./static/dist:static" --add-data "./static/public:public" --hidden-import=flask_socketio --hidden-import=engineio pix.py else - pyinstaller pix.spec + pyinstaller --onefile --add-data "./static/dist:static" --add-data "./static/public:public" --hidden-import=flask_socketio --hidden-import=engineio pix.py fi - name: Rename the executable -- cgit v1.2.3