We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f37df80 commit 128e4efCopy full SHA for 128e4ef
.github/workflows/pyinstaller-build.yml
@@ -0,0 +1,26 @@
1
+on:
2
+ push:
3
+ tags:
4
+ - '**' # Push events to every tag including hierarchical tags like v1.0/beta
5
+
6
+jobs:
7
+ build:
8
+ runs-on: ${{ matrix.os }}
9
+ strategy:
10
+ fail-fast: false
11
+ matrix:
12
+ os: ['windows-latest', 'ubuntu-latest', 'macos-latest']
13
14
+ steps:
15
+ - uses: actions/checkout@v2
16
+ - uses: actions/setup-python@v2
17
+ with:
18
+ python-version: 3.10
19
20
+ - run: pip install -r requirements.txt pyinstaller
21
+ - run: python scripts/build_app.py
22
+ # Optionally verify that it works (provided that it does not need user interaction)
23
+ #- run: ./dist/your-code/your-code
24
+ #- uses: actions/upload-artifact@v2
25
+ # with:
26
+ # path: dist/*
0 commit comments