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:
@@ -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
|
||||||
|
|||||||
Reference in New Issue
Block a user