Skip to content

Commit fdb7b81

Browse files
committed
testing macos build
1 parent 7ea8c96 commit fdb7b81

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed

.github/workflows/python-app.yml

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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+
with:
26+
name: shoggoth-mac
27+
path: dist/Shoggoth/

0 commit comments

Comments
 (0)