Update release-windows.yml workflow to use compilation/ directory

This commit is contained in:
2026-09-04 15:57:14 +02:00
parent 939fa4270a
commit 907616511b
+3 -3
View File
@@ -35,7 +35,7 @@ jobs:
} }
} }
& $py -m pip install --upgrade pip & $py -m pip install --upgrade pip
& $py -m pip install pyinstaller -r requirements.txt & $py -m pip install pyinstaller -r compilation/requirements.txt
- name: Compile Standalone Windows Binaries - name: Compile Standalone Windows Binaries
shell: powershell shell: powershell
@@ -46,7 +46,7 @@ jobs:
$py = "py -3.12" $py = "py -3.12"
} }
} }
& $py package_dist.py --target windows & $py compilation/package_dist.py --target windows
- name: Publish Windows Release Assets - name: Publish Windows Release Assets
shell: powershell shell: powershell
@@ -62,4 +62,4 @@ jobs:
$py = "py -3.12" $py = "py -3.12"
} }
} }
& $py upload_release.py --skip-build & $py compilation/upload_release.py --skip-build