-
Notifications
You must be signed in to change notification settings - Fork 0
43 lines (33 loc) · 1.18 KB
/
buildexe.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
name: Build EXE
on:
push:
branches:
- main
jobs:
build-py-to-exe:
runs-on: windows-latest
permissions:
contents: write
steps:
- uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v4
with:
python-version: 3.12
- name: Install requirements
run: uv pip install --system -r requirements.txt
- name: Run all tests except invalid nexts
run: uv run pytest src/test_main.py --deselect src/test_main.py::test_no_invalid_nexts
continue-on-error: true
# We only want it to fail when there's something that could crash the game
- name: Run invalid nexts test
run: uv run pytest src/test_main.py::test_no_invalid_nexts
- name: Build with PyInstaller
run: uv run pyinstaller -F src/main.py --hidden-import sys --add-data src/resources/:./resources/ --name Cave-of-Shadows-AdventureSoft
- name: Publish
uses: softprops/[email protected]
with:
files: dist/Cave-of-Shadows-AdventureSoft.exe
tag_name: v${{ github.run_number }}
prerelease: false
name: v${{ github.run_number }}