-
Notifications
You must be signed in to change notification settings - Fork 0
54 lines (46 loc) · 1.32 KB
/
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
44
45
46
47
48
49
50
51
52
53
54
name: build-docs
# Only run this when the master branch changes
on:
pull_request:
push:
branches:
- master
paths:
- 'pyproject.toml'
- '**.py'
- 'templates/**'
- '.github/workflows/build-docs.yml'
# Cancel existing executions when new commits are pushed onto the branch
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
# This job installs dependencies, build the book, and pushes it to `gh-pages`
jobs:
deploy-book:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
# Install dependencies
- name: Set up Python 3.9
uses: actions/setup-python@v1
with:
python-version: 3.9
- name: Install Poetry
uses: snok/install-poetry@v1
- name: Install dependencies
run: |
python3 -m pip install pdoc matplotlib numpy scipy wheel setuptools poetry pytest
python3 -m pip install .
# Build the site
- name: Build the site
run: |
bash generate_docs.sh -t
# If we've pushed to master, push the book's HTML to github-pages
- if: ${{ github.ref == 'refs/heads/master' }}
name: GitHub Pages action
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./docs