summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorTim Keller <tjk@tjkeller.xyz>2025-06-26 21:42:55 -0500
committerTim Keller <tjk@tjkeller.xyz>2025-06-26 21:42:55 -0500
commit3f0c20101b230581065d72219f5f269b07f94454 (patch)
treeb9ef70fa39061b4497d7d55f95e731dc6d739cba /.github
parent0d31b7a52720ff1fab1745875e9e67b23c531fdf (diff)
downloadimmich-frame-3f0c20101b230581065d72219f5f269b07f94454.tar.xz
immich-frame-3f0c20101b230581065d72219f5f269b07f94454.zip
artifact for static/dist and fix pyinstaller maybe
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/pyinstaller-release.yaml10
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 }}