summaryrefslogtreecommitdiff
path: root/.github/workflows
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows')
-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 }}