minor ui adjectumes and temporaly fix the worflow by using the pyproject.toml file instead of requirements.txt since it did not work

This commit is contained in:
xgui4
2026-05-30 10:34:38 -04:00
parent 52991199c3
commit 5e8755e4bd
4 changed files with 6 additions and 440 deletions

View File

@@ -26,7 +26,7 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install . nuitka
- name: Build with Nuitka
run: hatch run python -m nuitka --standalone --assume-yes-for-download --output-dir=dist src/lce_qt_launcher/main.py
@@ -94,11 +94,7 @@ jobs:
# --- JOB 4 : Making AppImage ---
build_appimage:
name: Build GNU/Linx AppImage
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest]
runs-on: ${{ matrix.os }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6.0.2
- uses: actions/setup-python@v6.2.0
@@ -108,7 +104,7 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install .
pip install pyproject-appimage
python -m pyproject-appimage
- name: Upload Artifact