-
Notifications
You must be signed in to change notification settings - Fork 0
35 lines (33 loc) · 998 Bytes
/
preview.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
# see https://github.com/marketplace/actions/deploy-pr-preview
name: preview
on:
# Trigger the workflow only on pull request to preview the book
pull_request:
# 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@v3
- name: Set up conda and dependencies
uses: mamba-org/provision-with-micromamba@v14
with:
environment-file: .binder/environment.yml
environment-name: clivar
extra-specs: |
python=3.10
channels: conda-forge
cache-env: true
# Build the book
- name: Build the book
run: |
jupyter-book build tutorial
# Upload artifact for preview
- uses: actions/upload-artifact@v3
with:
name: jupyterbook-html
path: tutorial/_build/html