Skip to content

Commit cfaa139

Browse files
committed
Fix doc build
1 parent fbe1e27 commit cfaa139

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

.github/workflows/build.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,9 @@ jobs:
6666

6767
- name: Install documentation dependencies and build
6868
run: |
69+
# Install MkDocs and dependencies using pip in a temporary venv
70+
python3 -m venv temp-docs-env
71+
source temp-docs-env/bin/activate
72+
pip install -r docs/requirements.txt
6973
cd docs
70-
uv venv
71-
uv pip install -r requirements.txt
72-
uv run mkdocs build --clean --strict
74+
mkdocs build --clean --strict

0 commit comments

Comments
 (0)