Skip to content

Commit

Permalink
Merge pull request #3 from ARCTraining/reformat-jbbook
Browse files Browse the repository at this point in the history
add github actions for deployment
  • Loading branch information
Sparrow0hawk authored Apr 18, 2023
2 parents e78b6f3 + 60d7fb0 commit 4f7e644
Show file tree
Hide file tree
Showing 3 changed files with 69 additions and 1 deletion.
35 changes: 35 additions & 0 deletions .github/workflows/deploy-book.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
# 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@v2
- uses: conda-incubator/setup-miniconda@v2
with:
environment-file: environment.yml
auto-activate-base: false
activate-environment: arcdocs-jb

# 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/[email protected]
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./book/_build/html
publish_branch: gh-pages
33 changes: 33 additions & 0 deletions .github/workflows/test-build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
# copied from https://jupyterbook.org/publish/gh-pages.html?highlight=github%20pages

name: test-build

# Only run this when a PR suggests changes to main branch
on:
pull_request:
branches:
- main

# This job installs dependencies and builds the book
jobs:
deploy-book:
runs-on: ${{ matrix.os }}
strategy:
# test build on multiple OS
matrix:
os: [macos-latest, windows-latest, ubuntu-latest]
steps:
- uses: actions/checkout@v2
- uses: conda-incubator/setup-miniconda@v2
with:
environment-file: environment.yml
auto-activate-base: false
activate-environment: arcdocs-jb

# Build the book
- name: Build the book
shell: bash -l {0}
run: |
conda activate arcdocs-jb
jupyter-book build ./book/
2 changes: 1 addition & 1 deletion book/_config.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Book settings
title: SWD5: Scientific Python
title: "SWD5: Scientific Python"
author: University of Leeds Research Computing Team
logo: ./assets/img/logo/logo.png
email: [email protected]
Expand Down

0 comments on commit 4f7e644

Please sign in to comment.