-
Notifications
You must be signed in to change notification settings - Fork 0
40 lines (38 loc) · 1.05 KB
/
jupyter-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
40
name: deploy
on:
# Trigger the workflow on push to main branch and tutorial path
push:
branches:
- main
paths:
- docs/**
# This job installs dependencies, build the jupyter notebook, and pushes it to `render`, a new `branch`
jobs:
build:
name: Setup
runs-on: "ubuntu-latest"
defaults:
run:
shell: bash -l {0}
steps:
- uses: actions/checkout@v2
- name: Set up conda and dependencies
uses: mamba-org/setup-micromamba@v1
with:
environment-file: .binder/environment.yml
environment-name: geohack
condarc: |
channels:
- conda-forge
# Build the book
- name: Build the jupyter book
run: |
jupyter-book build docs
# Deploy the book's HTML to gh-pages branch
- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v3
with:
publish_branch: gh-pages
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: docs/_build/html
force_orphan: true