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

This commit is contained in:
2026-09-04 15:57:02 +02:00
parent 1f4bf3219b
commit 939fa4270a
+3 -3
View File
@@ -26,11 +26,11 @@ jobs:
apt-get install -y python3 python3-pip python3-venv binutils zip
fi
python3 -m pip install --upgrade pip --break-system-packages || python3 -m pip install --upgrade pip || true
pip3 install pyinstaller -r requirements.txt --break-system-packages || pip3 install pyinstaller -r requirements.txt
pip3 install pyinstaller -r compilation/requirements.txt --break-system-packages || pip3 install pyinstaller -r compilation/requirements.txt
- name: Compile Standalone Linux Binaries
run: |
python3 package_dist.py --target linux
python3 compilation/package_dist.py --target linux
- name: Publish Linux Release Assets
env:
@@ -39,4 +39,4 @@ jobs:
GITEA_REPOSITORY: ${{ github.repository }}
GITEA_REF_NAME: ${{ inputs.tag || github.ref_name }}
run: |
python3 upload_release.py --skip-build
python3 compilation/upload_release.py --skip-build