Skip to content

Merge pull request #58 from ARCTraining/murphyqm-patch-01 #38

Merge pull request #58 from ARCTraining/murphyqm-patch-01

Merge pull request #58 from ARCTraining/murphyqm-patch-01 #38

Workflow file for this run

# copied from https://jupyterbook.org/publish/gh-pages.html?highlight=github%20pages
name: deploy-book
# Only run this when the master branch changes
on:
push:
branches:
- main
# This job installs dependencies, build the book, and pushes it to `gh-pages`
jobs:
deploy-book:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: conda-incubator/setup-miniconda@v2
with:
environment-file: environment.yml
auto-activate-base: false
activate-environment: arcdocs-jb
python-version: 3.9
# Build the book
- name: Build the book
shell: bash -l {0}
run: |
conda activate arcdocs-jb
jupyter-book build ./book/
# Push the book's HTML to master branch (because this is an organisation homepage)
- name: GitHub Pages action
uses: peaceiris/actions-gh-pages@v3.9.3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./book/_build/html
publish_branch: gh-pages