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 c7dc6cb commit bec6141Copy full SHA for bec6141
.github/workflows/test.yml
@@ -6,7 +6,7 @@ on:
6
- main
7
8
jobs:
9
- build:
+ build-ubuntu:
10
runs-on: ubuntu-latest
11
steps:
12
- uses: actions/checkout@v2
@@ -28,4 +28,27 @@ jobs:
28
uses: actions/upload-artifact@v4
29
with:
30
name: bin
31
- path: bin
+ path: bin
32
+ build-mac:
33
+ runs-on: osx-latest
34
+ steps:
35
+ - uses: actions/checkout@v2
36
+ # setup python
37
+ - name: Set up Python 3.8
38
+ uses: actions/setup-python@v2
39
+ with:
40
+ python-version: 3.8
41
+ - name: Build binaries
42
+ run: |
43
+ pip install -r requirements.txt
44
+ pip install pyinstaller
45
+ pyinstaller --onefile __main__.py
46
+ - name: Move binaries
47
48
+ mkdir bin
49
+ mv dist/__main__ bin
50
+ - name: Upload artifact
51
+ uses: actions/upload-artifact@v4
52
53
+ name: bin
54
0 commit comments