-
-
Notifications
You must be signed in to change notification settings - Fork 240
26 lines (26 loc) · 695 Bytes
/
documentation.yml
File metadata and controls
26 lines (26 loc) · 695 Bytes
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
name: Build documentation
on:
push:
branches:
- master
jobs:
build-doc:
name: Build upstream version documentation
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.10"
- name: Install dependencies
run: |
pip3 install mkdocs-material mike
- name: Setup doc deploy
run: |
git config --global user.name Documentation Bot
git config --global user.email bot@github.com
- name: Build docs
run: mike deploy --push --update-aliases upstream