Skip to content

Commit 3c098c5

Browse files
committed
Update GitHub action for windows
1 parent 336d15c commit 3c098c5

File tree

1 file changed

+10
-8
lines changed

1 file changed

+10
-8
lines changed

.github/workflows/python-app.yml

+10-8
Original file line numberDiff line numberDiff line change
@@ -7,21 +7,23 @@ on:
77

88
permissions:
99
contents: write
10-
10+
1111
jobs:
1212
build:
13-
14-
runs-on: ubuntu-latest
13+
runs-on: windows-latest
1514

1615
steps:
1716
- uses: actions/checkout@v4
1817

19-
- name: Package Application
20-
uses: JackMcKew/pyinstaller-action-windows@main
18+
- name: Install the latest version of uv and set the python version
19+
uses: astral-sh/setup-uv@v5
2120
with:
22-
path: d2rloader
21+
python-version: 3.13
22+
23+
- name: Make PyInstaller Package
24+
run: uv run pyinstaller D2RLoader.spec --noconfirm
2325

2426
- uses: actions/upload-artifact@v4
2527
with:
26-
name: Diablo II Loader
27-
path: src/dist/windows
28+
name: D2RLoader
29+
path: src/dist/*

0 commit comments

Comments
 (0)