-
Notifications
You must be signed in to change notification settings - Fork 2
54 lines (42 loc) · 1.34 KB
/
api-docs.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
name: API Docs
# on:
# push:
# branches:
# - <your-branch>
on:
release:
types:
- published
permissions:
contents: write
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: 3.x
- uses: actions/cache@v3
with:
key: ${{ github.ref }}
path: .cache
- name: Install dependencies for doc generation
run: |
python -m pip install --upgrade pip
pip install -r docs/_pydoc/requirements.txt
pip install --upgrade setuptools # Fix to prevent: ModuleNotFoundError: No module named 'pkg_resources'
- name: Generate API docs
run: ./.github/utils/pydoc-markdown.sh
- name: Configure git to push docs
run: |
git config --global user.name docs-bot
git config --global user.email [email protected]
git config pull.rebase false
git pull --allow-unrelated-histories origin gh-pages
- name: Install dependencies for doc deployment
run: pip install mkdocs-material mkdocstrings[python] mkdocs-mermaid2-plugin mike
- name: Publish docs
run: |
mike deploy --push --update-aliases ${{github.ref_name}} && \
mike set-default --push ${{github.ref_name}}