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 90f0685 commit 394e4b5Copy full SHA for 394e4b5
.github/workflows/main.yml
@@ -0,0 +1,20 @@
1
+name: PyInstaller Action
2
+
3
+on:
4
+ push:
5
6
+# workflow_dispatch:
7
8
+jobs:
9
+ pyinstaller-build:
10
+ runs-on: macos-13
11
+ env:
12
+ PIP_USE_PEP517: 1
13
+ steps:
14
+ - name: Create Executable
15
+ uses: sayyid5416/pyinstaller@v1
16
+ with:
17
+ python_ver: '3.11'
18
+ spec: 'JParty.spec'
19
+ requirements: 'requirements.txt'
20
+ upload_exe_with_name: 'JParty_macos'
requirements.txt
@@ -1,3 +1,4 @@
+--prefer-binary
PyQt6==6.9.1
requests==2.32.4
simpleaudio==1.0.4
0 commit comments