Skip to content

Commit 9d34eb7

Browse files
authored
fix: Fix documentation (#38)
### Description Remove `UV` from documentation deployment. Fixes #37
1 parent fa5d1fa commit 9d34eb7

File tree

1 file changed

+14
-6
lines changed

1 file changed

+14
-6
lines changed

.github/workflows/deploy-mkdocs.yml

+14-6
Original file line numberDiff line numberDiff line change
@@ -20,13 +20,21 @@ jobs:
2020
- name: Checkout
2121
uses: actions/checkout@v4
2222

23-
- name: Install uv and set the python version
24-
uses: astral-sh/setup-uv@v5
23+
- name: Set up Python
24+
uses: actions/setup-python@v4
2525
with:
26-
python-version: "3.11"
27-
28-
- name: Install the project
29-
run: uv sync --locked --group docs
26+
python-version: '3.11'
27+
28+
- name: Install the dependencies
29+
run: |
30+
pip install `
31+
"mkdocs>=1.6.1" `
32+
"mkdocs-gen-files>=0.5.0" `
33+
"mkdocs-jupyter>=0.25.1" `
34+
"mkdocs-literate-nav>=0.6.2" `
35+
"mkdocs-material>=9.6.12" `
36+
"mkdocs-section-index>=0.3.10" `
37+
"mkdocstrings[python]>=0.29.1"
3038
3139
- name: Build MkDocs
3240
run: mkdocs build --site-dir ./deploy

0 commit comments

Comments
 (0)