-
Notifications
You must be signed in to change notification settings - Fork 0
47 lines (42 loc) · 1.25 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
name: deploy_docs
on:
# Trigger the workflow on push to master branch
push:
branches:
- master
# This job installs dependencies, build the book, and pushes it to `gh-pages`
jobs:
build-and-deploy-book:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
python-version: [3.8]
steps:
- uses: actions/checkout@v2
# Install dependencies
- name: Set up conda env with dependencies
uses: conda-incubator/setup-miniconda@v2
with:
python-version: ${{ matrix.python-version }}
mamba-version: "*"
channels: conda-forge, defaults
channel-priority: true
activate-environment: prospect-docs
environment-file: docs_environment.yml
auto-activate-base: false
- name: Install prospect in dev mode
shell: bash -l {0}
run: |
python3 -m pip install -e .
# Build the book
- name: Build the book
shell: bash -l {0}
run: |
jupyter-book build docs/prospect-guide
# Deploy the book's HTML to gh-pages branch
- name: GitHub Pages action
uses: peaceiris/[email protected]
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: docs/prospect-guide/_build/html