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 7ea8c96 commit fdb7b81Copy full SHA for fdb7b81
.github/workflows/python-app.yml
@@ -0,0 +1,27 @@
1
+name: Build MacOS Executable
2
+
3
+on:
4
+ push:
5
+ branches: ["main"]
6
7
+jobs:
8
+ build-windows:
9
+ runs-on: macos-latest
10
+ steps:
11
+ - uses: actions/checkout@v3
12
+ - name: Set up Python
13
+ uses: actions/setup-python@v4
14
+ with:
15
+ python-version: "3.11"
16
+ - name: Install uv
17
+ uses: astral-sh/setup-uv@v6
18
+ - name: Install the project
19
+ run: uv sync
20
+ - name: Install pyinstaller
21
+ run: uv add --dev pyinstaller
22
+ - name: Compile
23
+ run: uv run --dev pyinstaller Shoggoth.spec
24
+ - uses: actions/upload-artifact@v4
25
26
+ name: shoggoth-mac
27
+ path: dist/Shoggoth/
0 commit comments