Skip to content

Various small improvements #1

Various small improvements

Various small improvements #1

Workflow file for this run

name: Package Application with Pyinstaller
on:
push:
tags:
- "v*"
permissions:
contents: write
jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- name: Install the latest version of uv and set the python version
uses: astral-sh/setup-uv@v5
with:
python-version: 3.13
- name: Make PyInstaller Package
run: uv run pyinstaller D2RLoader.spec --noconfirm
- uses: actions/upload-artifact@v4
with:
name: D2RLoader
path: src/dist/*