File tree Expand file tree Collapse file tree 1 file changed +15
-7
lines changed Expand file tree Collapse file tree 1 file changed +15
-7
lines changed Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ name: Deploy | Deploy MkDocs
3
3
on :
4
4
workflow_dispatch :
5
5
push :
6
- branches : ['main ']
6
+ branches : ['* ']
7
7
8
8
permissions :
9
9
contents : read
@@ -20,13 +20,21 @@ jobs:
20
20
- name : Checkout
21
21
uses : actions/checkout@v4
22
22
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
25
25
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" \
30
38
31
39
- name : Build MkDocs
32
40
run : mkdocs build --site-dir ./deploy
You can’t perform that action at this time.
0 commit comments