Use Poetry to install wheel and download dependencies in build-deb workflow

This commit is contained in:
2025-04-27 10:57:19 +00:00
parent bbe5d7f2b1
commit 29d04a25f0

View File

@@ -43,8 +43,8 @@ jobs:
- name: 📥 Download Wheels for Dependencies
run: |
mkdir -p dist/wheels
pip install wheel
pip download --only-binary=:all: --dest dist -r requirements.txt
poetry run pip install wheel
poetry run pip download --only-binary=:all: --dest dist -r requirements.txt
- name: 🛠 Build Project Wheel
run: |