-
Notifications
You must be signed in to change notification settings - Fork 2
44 lines (38 loc) · 1.21 KB
/
build-and-deploy-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
name: docs/gh-pages
on: [workflow_dispatch]
# create:
# tags:
# - '*'
# schedule:
# - cron: '0 3 * * *' # run every night at 3AM
jobs:
build-docs:
name: Build docs and push to gh-pages
runs-on: ubuntu-latest
steps:
- name: Checkout branch
uses: actions/checkout@v2
- name: Setup python
uses: actions/setup-python@master
with:
python-version: 3.8
- name: Install poetry
uses: snok/install-poetry@v1
with:
virtualenvs-create: true
- name: Install dependencies
run: poetry install
- name: build docs
run: |
source $(poetry env info --path)/bin/activate
cd docs
make clean
make html
cd ..
- name: deploy to gh-pages
uses: Cecilapp/GitHub-Pages-deploy@v3
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
email: [email protected]
build_dir: docs/_build/html