File tree 1 file changed +29
-27
lines changed
1 file changed +29
-27
lines changed Original file line number Diff line number Diff line change 1
1
name : Deploy MkDocs to GitHub Pages
2
2
3
3
on :
4
- push :
5
- branches :
6
- - main
7
- workflow_dispatch :
4
+ push :
5
+ branches :
6
+ - main
7
+ workflow_dispatch :
8
8
9
9
jobs :
10
- deploy :
11
- runs-on : ubuntu-latest
12
- permissions :
13
- contents : write
14
- steps :
15
- - name : Checkout code
16
- uses : actions/checkout@v3
17
- with :
18
- fetch-depth : 0
10
+ deploy :
11
+ runs-on : ubuntu-latest
12
+ permissions :
13
+ contents : write
14
+ steps :
15
+ - name : Checkout code
16
+ uses : actions/checkout@v3
17
+ with :
18
+ fetch-depth : 0
19
19
20
- - name : Set up Python
21
- uses : actions/setup-python@v3
22
- with :
23
- python-version : ' 3.9'
20
+ - name : Set up Python
21
+ uses : actions/setup-python@v3
22
+ with :
23
+ python-version : ' 3.9'
24
24
25
- - name : Install dependencies
26
- run : |
27
- python -m pip install --upgrade pip
28
- pip install mkdocs mkdocs-material mkdocstrings[python] mkdocs-gen-files mkdocs-literate-nav mkdocs-section-index
25
+ - name : Install dependencies
26
+ run : |
27
+ python -m pip install --upgrade pip
28
+ pip install mkdocs mkdocs-material mkdocstrings[python]
29
29
30
- - name : Configure Git
31
- run : |
32
- git config --global user.name 'github-actions[bot]'
33
- git config --global user.email 'github-actions[bot]@users.noreply.github.com'
30
+ - name : Configure Git
31
+ run : |
32
+ git config --global user.name 'github-actions[bot]'
33
+ git config --global user.email 'github-actions[bot]@users.noreply.github.com'
34
34
35
- - name : Build and deploy
36
- run : mkdocs gh-deploy --force
35
+ - name : Build and deploy
36
+ run : |
37
+ export PYTHONPATH=$PYTHONPATH:$(pwd)
38
+ mkdocs gh-deploy --force
You can’t perform that action at this time.
0 commit comments