File tree Expand file tree Collapse file tree 2 files changed +34
-0
lines changed Expand file tree Collapse file tree 2 files changed +34
-0
lines changed Original file line number Diff line number Diff line change
1
+ # This workflow will install Python dependencies, run tests and lint with a single version of Python
2
+ # For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python
3
+
4
+ name : Build
5
+
6
+ on :
7
+ workflow_dispatch :
8
+
9
+ jobs :
10
+ build :
11
+
12
+ runs-on : windows-latest
13
+
14
+ steps :
15
+ - uses : actions/checkout@v4
16
+ - name : Set up Python 3.11
17
+ uses : actions/setup-python@v3
18
+ with :
19
+ python-version : " 3.11"
20
+ - name : Install dependencies
21
+ run : |
22
+ python -m pip install --upgrade pip
23
+ pip install -r requirements.txt -U nuitka ordered-set zstandard
24
+
25
+ - name : Build Exe
26
+ run :
27
+ python -m nuitka --mingw64 --assume-yes-for-downloads --standalone --windows-console-mode=disable --jobs=8 --output-dir="build" --windows-icon-from-ico=icon.ico main.py
28
+ - name : Upload ZIP
29
+ uses : actions/upload-artifact@v4.3.1
30
+ with :
31
+ name : Aura-Text
32
+ path : build
Original file line number Diff line number Diff line change @@ -14,3 +14,5 @@ qt_material==2.14
14
14
Requests == 2.32.2
15
15
roastedbyai == 1.2.0
16
16
pyqtdarktheme
17
+ PyQt6-Fluent-Widgets == 1.6.0
18
+ PyQt6-QScintilla == 2.14.1
You can’t perform that action at this time.
0 commit comments