restructure

This commit is contained in:
xgui4
2026-04-18 22:26:34 -04:00
parent 9bc59dcbda
commit c9c6b69810
15 changed files with 53 additions and 49 deletions

View File

@@ -37,18 +37,18 @@ jobs:
- name: Build with Nuitka
run: |
hatch run python -m nuitka --standalone --assume-yes-for-download --output-dir=dist src/main.py
hatch run python -m nuitka --standalone --assume-yes-for-download --output-dir=dist src/legacy-qt-launcher/main.py
- name: Package Windows build
if: matrix.os == 'windows-latest'
shell: pwsh
run: |
Compress-Archive -Path dist/main.dist/* -DestinationPath LCE-Qt-Launcher-Windows.zip
Compress-Archive -Path dist/legacy-qt-launcher.dist/* -DestinationPath LCE-Qt-Launcher-Windows.zip
- name: Package Linux build
if: matrix.os == 'ubuntu-latest'
run: |
tar -czf LCE-Qt-Launcher-Linux.tar.gz -C dist/main.dist .
tar -czf LCE-Qt-Launcher-Linux.tar.gz -C dist/legacy-qt-launcher.dist .
- name: Upload Nightly
uses: andelf/nightly-release@main