Merge pull request #100 from pangeo-data/clausmichele-patch-1 #90
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: deploy | |
on: | |
# Trigger the workflow on push to main branch and tutorial path | |
push: | |
branches: | |
- main | |
paths: | |
- tutorial/** | |
# 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: bids23 | |
condarc: | | |
channels: | |
- conda-forge | |
# Build the book | |
- name: Build the jupyter book | |
run: | | |
jupyter-book build tutorial | |
# Deploy the book's HTML to gh-pages branch | |
- name: GitHub Pages action | |
uses: peaceiris/actions-gh-pages@v3.6.1 | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
publish_dir: tutorial/_build/html |