From 3f0c20101b230581065d72219f5f269b07f94454 Mon Sep 17 00:00:00 2001 From: Tim Keller Date: Thu, 26 Jun 2025 21:42:55 -0500 Subject: artifact for static/dist and fix pyinstaller maybe --- .github/workflows/pyinstaller-release.yaml | 10 ++++++++-- 1 file 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 }} -- cgit v1.2.3