We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bec6141 commit 316ae5fCopy full SHA for 316ae5f
1 file changed
.github/workflows/test.yml
@@ -27,7 +27,7 @@ jobs:
27
- name: Upload artifact
28
uses: actions/upload-artifact@v4
29
with:
30
- name: bin
+ name: bin-ubuntu
31
path: bin
32
build-mac:
33
runs-on: osx-latest
@@ -50,5 +50,24 @@ jobs:
50
51
52
53
+ name: bin-mac
54
55
+ build-win:
56
+ runs-on: osx-latest
57
+ steps:
58
+ - uses: actions/checkout@v2
59
+ # setup python
60
+ - name: Set up Python 3.8
61
+ uses: actions/setup-python@v2
62
+ with:
63
+ python-version: 3.8
64
+ - name: Build binaries
65
+ run: |
66
+ pip install -r requirements.txt
67
+ pip install pyinstaller
68
+ pyinstaller --onefile __main__.py
69
+ - name: Upload artifact
70
+ uses: actions/upload-artifact@v4
71
72
+ name: bin-win
73
+ path: dist
0 commit comments