Refines GitHub Actions workflow for building wheels, improving comments and organization

This commit is contained in:
2025-04-26 21:25:41 +02:00
parent 5263a31c07
commit 961d182bf7

View File

@@ -1,7 +1,7 @@
name: Build Wheels name: Build Wheels
on: on:
workflow_dispatch: # <-- Nur manuell über GitHub auslösbar workflow_dispatch: # <-- Nur manuell über GitHub startbar
jobs: jobs:
build: build:
@@ -11,15 +11,20 @@ jobs:
- name: 🛒 Checkout Repository - name: 🛒 Checkout Repository
uses: actions/checkout@v4 uses: actions/checkout@v4
- name: ⚙️ Prepare Environment Variables
run: |
echo "AGENT_TOOLSDIRECTORY=/home/runner/toolcache" >> $GITHUB_ENV
mkdir -p /home/runner/toolcache
- name: 🐍 Setup Python - name: 🐍 Setup Python
uses: actions/setup-python@v5 uses: actions/setup-python@v5
with: with:
python-version: "3.12" # Deine Python-Version anpassen python-version: "3.12"
- name: 📦 Install Poetry - name: 📦 Install Poetry
run: | run: |
curl -sSL https://install.python-poetry.org | python3 - curl -sSL https://install.python-poetry.org | python3 -
echo "$HOME/.local/bin" >> $GITHUB_PATH # Poetry ins PATH einfügen echo "$HOME/.local/bin" >> $GITHUB_PATH
- name: 🔧 Install Project Dependencies - name: 🔧 Install Project Dependencies
run: | run: |
@@ -29,16 +34,27 @@ jobs:
run: | run: |
poetry export --without-hashes --format=requirements.txt > requirements.txt poetry export --without-hashes --format=requirements.txt > requirements.txt
- name: 📥 Download wheels for dependencies - name: 📥 Download Wheels for Dependencies
run: | run: |
mkdir -p dist/wheels mkdir -p dist/wheels
pip install wheel pip install wheel
pip download --only-binary=:all: --dest dist/wheels -r requirements.txt pip download --only-binary=:all: --dest dist/wheels -r requirements.txt
- name: 🛠 Build own wheel - name: 🛠 Build Project Wheel
run: | run: |
poetry build -f wheel poetry build -f wheel
- name: 🔌 Install pipx and wheel2deb
run: |
python3 -m pip install --user pipx
python3 -m pipx ensurepath
pipx install wheel2deb
- name: 🛠 Convert Wheel to DEB
run: |
mkdir -p dist/debs
wheel2deb dist/*.whl -d dist/debs
- name: 📤 Upload dist/ artifacts - name: 📤 Upload dist/ artifacts
uses: actions/upload-artifact@v4 uses: actions/upload-artifact@v4
with: with: