-
Notifications
You must be signed in to change notification settings - Fork 1
39 lines (31 loc) · 800 Bytes
/
docs.yaml
File metadata and controls
39 lines (31 loc) · 800 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
27
28
29
30
31
32
33
34
35
36
37
38
39
name: Documentation Building
on:
push:
branches:
- main
jobs:
docs:
permissions:
contents: write
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
with:
python-version: "3.11"
- uses: pdm-project/setup-pdm@v3
name: Set up PDM
with:
python-version: "3.11"
allow-python-prereleases: true
cache: true
- name: Install dependencies
run: pdm install
- name: Fetch gh pages
run: git fetch origin gh-pages --depth=1
- name: Build docs
run: pdm run python tools/build_docs.py docs-build
- name: Deploy
uses: JamesIves/github-pages-deploy-action@v4
with:
folder: docs-build