diff options
| author | Tim Keller <tjk@tjkeller.xyz> | 2025-06-26 21:47:22 -0500 |
|---|---|---|
| committer | Tim Keller <tjk@tjkeller.xyz> | 2025-06-26 21:47:22 -0500 |
| commit | 2ae1d764ddaa27f09debc2d08af8a001dbae639c (patch) | |
| tree | 941e7e7b28b6fce4d41a07e666c5807f547a7edc | |
| parent | 3f0c20101b230581065d72219f5f269b07f94454 (diff) | |
| download | immich-frame-2ae1d764ddaa27f09debc2d08af8a001dbae639c.tar.xz immich-frame-2ae1d764ddaa27f09debc2d08af8a001dbae639c.zip | |
use whole pyinstller cmd instead of spec file
| -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 |
