rename
Some checks failed
Build Notes Site / build (push) Failing after 2s

This commit is contained in:
Jay
2026-03-03 11:12:29 +00:00
parent 4a4c1419ec
commit 9b5cd7396e

View File

@@ -8,17 +8,17 @@ jobs:
build: build:
runs-on: ubuntu-latest runs-on: ubuntu-latest
container: container:
image: node:20-bookworm image: gitea/act_runner:latest
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v4
- name: Setup Python environment - name: Install Python + MkDocs
run: | run: |
apt-get update apt-get update
apt-get install -y python3 python3-venv apt-get install -y python3 python3-venv
python3 -m venv .venv python3 -m venv .venv
.venv/bin/pip install --upgrade pip
.venv/bin/pip install -r ci/mkdocs/requirements.txt .venv/bin/pip install -r ci/mkdocs/requirements.txt
- name: Build - name: Build site
run: .venv/bin/mkdocs build --clean --site-dir /public run: .venv/bin/mkdocs build --clean --site-dir /public