-
Notifications
You must be signed in to change notification settings - Fork 15
39 lines (34 loc) · 980 Bytes
/
build_book.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
name: Build Jupyter Book
on:
# Trigger the workflow on push to main branch.
push:
branches:
- main
# 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 Python ${{ matrix.python-version }}
uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install -e '.[dev]'
# Build the book.
- name: Build
run: |
jupyter-book build docs
# Deploy the book's HTML to the branch `gh-pages`.
- name: Deploy to GitHub Pages
uses: peaceiris/[email protected]
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: docs/_build/html