From bc337fcb39ea98e2b30310a5019201b3eed44880 Mon Sep 17 00:00:00 2001 From: xgui4 <134389196+xgui4@users.noreply.github.com> Date: Thu, 12 Mar 2026 19:30:30 -0400 Subject: [PATCH] fix nightly build --- .github/workflows/nightly.yml | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/.github/workflows/nightly.yml b/.github/workflows/nightly.yml index 058da65..57e4869 100644 --- a/.github/workflows/nightly.yml +++ b/.github/workflows/nightly.yml @@ -5,6 +5,9 @@ on: branches: - master +permissions: + contents: write + jobs: nightly: name: Build Nightly @@ -30,14 +33,20 @@ jobs: pip install -r requirements.txt pip install nuitka - - name: Build with Nuitka + - name: Build with Nuitka for Linux + if: matrix.os == 'ubuntu-latest' run: | python -m nuitka --onefile --standalone --enable-plugin=pyside6 --output-dir=dist src/launcher.py + - name: Build with Nuitka for Windows + if: matrix.os == 'ubuntu-latest' + run: | + python -m nuitka --enable-plugin=pyside6 --output-dir=dist src/launcher.py + - name: Package Windows build if: matrix.os == 'windows-latest' run: | - powershell Compress-Archive -Path dist/* -DestinationPath LCE-WQt-Launcher-Windows.zip + 7z a -r LCE-WQt-Launcher-Windows.zip dist/* - name: Package Linux build if: matrix.os == 'ubuntu-latest'