-
Notifications
You must be signed in to change notification settings - Fork 73
39 lines (36 loc) · 1.14 KB
/
deploy.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: deploy
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: Setup Miniconda Virtual Environment
uses: conda-incubator/setup-miniconda@v2
with:
activate-environment: tutorial
environment-file: environment.yml
python-version: ${{ matrix.python-version }}
auto-activate-base: false
# Build the book
- shell: bash -l {0}
run: |
conda activate tutorial
python -m ipykernel install --user --name tutorial --display-name "Python (tutorial)"
jupyter-book build iheadwater_hackweek_tutorials
# 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: iheadwater_hackweek_tutorials/_build/html