Skip to content

Commit 752a6c9

Browse files
Update deploy-docs.yaml
1 parent 0ddf076 commit 752a6c9

File tree

1 file changed

+29
-27
lines changed

1 file changed

+29
-27
lines changed

.github/workflows/deploy-docs.yaml

+29-27
Original file line numberDiff line numberDiff line change
@@ -1,36 +1,38 @@
11
name: Deploy MkDocs to GitHub Pages
22

33
on:
4-
push:
5-
branches:
6-
- main
7-
workflow_dispatch:
4+
push:
5+
branches:
6+
- main
7+
workflow_dispatch:
88

99
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
1919

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'
2424

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]
2929
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'
3434
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

0 commit comments

Comments
 (0)