diff options
| author | Tim Keller <tjk@tjkeller.xyz> | 2025-06-26 21:42:55 -0500 |
|---|---|---|
| committer | Tim Keller <tjk@tjkeller.xyz> | 2025-06-26 21:42:55 -0500 |
| commit | 3f0c20101b230581065d72219f5f269b07f94454 (patch) | |
| tree | b9ef70fa39061b4497d7d55f95e731dc6d739cba /.github/workflows | |
| parent | 0d31b7a52720ff1fab1745875e9e67b23c531fdf (diff) | |
| download | immich-frame-3f0c20101b230581065d72219f5f269b07f94454.tar.xz immich-frame-3f0c20101b230581065d72219f5f269b07f94454.zip | |
artifact for static/dist and fix pyinstaller maybe
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/pyinstaller-release.yaml | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/.github/workflows/pyinstaller-release.yaml b/.github/workflows/pyinstaller-release.yaml index 84166d7..3325100 100644 --- a/.github/workflows/pyinstaller-release.yaml +++ b/.github/workflows/pyinstaller-release.yaml @@ -24,6 +24,12 @@ jobs: working-directory: ./static run: npx webpack + - name: Upload frontend bundle + uses: actions/upload-artifact@v4 + with: + name: frontend-bundle + path: ./static/dist + pyinstaller: needs: webpack runs-on: ubuntu-latest @@ -71,7 +77,7 @@ jobs: TARGET_ARCH: ${{ matrix.arch }} run: | if [ "${{ matrix.arch }}" = "arm64" ]; then - pyinstaller --target-arch aarch64 pix.spec + ARCHITECTURE=aarch64 pyinstaller pix.spec else pyinstaller pix.spec fi @@ -80,7 +86,7 @@ jobs: run: | mv ./dist/pix ./dist/pixpy-${{ matrix.arch }} - - name: Upload executable + - name: Upload executables uses: actions/upload-artifact@v4 with: name: pixpy-${{ matrix.arch }} |
