We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 336d15c commit 3c098c5Copy full SHA for 3c098c5
.github/workflows/python-app.yml
@@ -7,21 +7,23 @@ on:
7
8
permissions:
9
contents: write
10
-
+
11
jobs:
12
build:
13
14
- runs-on: ubuntu-latest
+ runs-on: windows-latest
15
16
steps:
17
- uses: actions/checkout@v4
18
19
- - name: Package Application
20
- uses: JackMcKew/pyinstaller-action-windows@main
+ - name: Install the latest version of uv and set the python version
+ uses: astral-sh/setup-uv@v5
21
with:
22
- path: d2rloader
+ python-version: 3.13
23
+ - name: Make PyInstaller Package
24
+ run: uv run pyinstaller D2RLoader.spec --noconfirm
25
26
- uses: actions/upload-artifact@v4
27
- name: Diablo II Loader
- path: src/dist/windows
28
+ name: D2RLoader
29
+ path: src/dist/*
0 commit comments