-
Notifications
You must be signed in to change notification settings - Fork 27
57 lines (54 loc) · 1.74 KB
/
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
55
56
57
# This workflow builds the docs for rivgraph
name: docs
on:
push:
paths:
- "docs/**"
pull_request:
schedule:
- cron: '0 0 1 * *' # run workflow at 12AM on first day of every month
jobs:
docs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
with:
persist-credentials: false
- uses: mamba-org/setup-micromamba@v1
with:
python-version: '3.9'
mamba-version: "*"
channels: conda-forge, defaults
environment-file: environment.yml
init-shell: bash
- name: Install RivGraph, dependencies, and Sphinx then build docs
shell: bash -l {0}
run: |
conda activate rivgraph
python setup.py install
python -m pip install --upgrade pip
pip install sphinx
sudo apt update -y && sudo apt install -y latexmk texlive-latex-recommended texlive-latex-extra texlive-fonts-recommended dvipng
pip install sphinx-rtd-theme
pip install sphinx-gallery
pip install ipython
pip install ipykernel
(cd docs && make docs)
(cd docs && make html)
- name: Debug
run: |
echo $REF
echo $EVENT_NAME
echo ${{ github.event_name == 'push' }}
echo ${{ github.ref == 'refs/heads/master' }}
echo ${{ github.event_name == 'push' && github.ref == 'refs/heads/master' }}
- name: Deploy to GitHub Pages
uses: JamesIves/[email protected]
if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/master' }}
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
EVENT_NAME: ${{ github.event_name }}
REF: ${{ github.ref }}
BRANCH: gh-pages
FOLDER: docs/build/html