diff options
| -rw-r--r-- | .github/workflows/pyinstaller-release.yaml | 4 |
1 files changed, 2 insertions, 2 deletions
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 |
