ci: manueller checkout statt actions/checkout
Some checks failed
CI / ci (push) Failing after 24s

actions/checkout@v4 ist eine node-action; python:3.12-slim hat kein node
installiert -> 'exec: node not found'. ersatz durch git clone analog
release.yml.
This commit is contained in:
2026-05-07 15:59:24 +02:00
parent 11acf0eb92
commit b95071a95e

View File

@@ -14,8 +14,16 @@ jobs:
container: container:
image: python:3.12-slim image: python:3.12-slim
steps: steps:
- name: Install git
run: |
apt-get update
apt-get install -y --no-install-recommends git ca-certificates
rm -rf /var/lib/apt/lists/*
- name: Checkout - name: Checkout
uses: actions/checkout@v4 run: |
git clone "${{ gitea.server_url }}/${{ gitea.repository }}.git" .
git checkout "${{ gitea.sha }}"
- name: Install uv - name: Install uv
run: pip install --no-cache-dir uv run: pip install --no-cache-dir uv