-
Notifications
You must be signed in to change notification settings - Fork 132
43 lines (35 loc) · 1017 Bytes
/
build_docs.yml
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
name: build_docs
on:
push:
branches: [master]
pull_request:
branches: ['*']
jobs:
build-docs:
runs-on: ubuntu-22.04
steps:
- uses: actions/[email protected]
with:
# Git-based versioning needs the full history
fetch-depth: 0
submodules: recursive
- uses: actions/[email protected]
with:
python-version: 3.11
- name: Install dependencies
run: |
pip install --upgrade pip setuptools wheel
pip install .[all]
- name: Build the book
run: jupyter-book build docs/ --warningiserror --keep-going --all
- name: Upload artifacts
uses: actions/[email protected]
with:
name: html
path: docs/_build/html
- name: Upload to GitHub Pages
uses: peaceiris/actions-gh-pages@v4
if: github.ref == 'refs/heads/master'
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: docs/_build/html