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

This commit is contained in:
Jay
2026-03-03 11:04:30 +00:00
parent 5a4c6e2c88
commit 704a35548c

View File

@@ -13,6 +13,18 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: Install Python + MkDocs
run: |
apt-get update
apt-get install -y python3 python3-venv python3-pip
python3 -m venv .venv
.venv/bin/pip install --upgrade pip
.venv/bin/pip install -r ci/mkdocs/requirements.txt
- name: Build site into Docker volume
run: |
.venv/bin/mkdocs build --clean --site-dir /public
- name: Install Python + MkDocs
run: |
apt-get update
@@ -23,7 +35,3 @@ jobs:
pip install --upgrade pip
pip install -r ci/mkdocs/requirements.txt
- name: Build site into Docker volume
run: |
mkdocs build --clean --site-dir /public