We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e9eef14 commit aedb56eCopy full SHA for aedb56e
.github/workflows/build.yml
@@ -0,0 +1,27 @@
1
+name: Build SwiftFox EXE
2
+on: [push]
3
+
4
+jobs:
5
+ build:
6
+ runs-on: windows-latest
7
8
+ steps:
9
+ - name: Checkout Code
10
+ uses: actions/checkout@v4
11
12
+ - name: Setup Python
13
+ uses: actions/setup-python@v5
14
+ with:
15
+ python-version: '3.12'
16
17
+ - name: Install Libraries
18
+ run: pip install customtkinter pyinstaller
19
20
+ - name: Build EXE
21
+ run: pyinstaller --noconfirm --onefile --windowed --uac-admin --name "SwiftFox_Ultimate_x64" main.py
22
23
+ - name: Upload Result
24
+ uses: actions/upload-artifact@v4
25
26
+ name: SwiftFox-Windows-EXE
27
+ path: dist/SwiftFox_Ultimate_x64.exe
0 commit comments