-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
31 additions
and
37 deletions.
There are no files selected for viewing
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,33 +1,28 @@ | ||
# 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/ | ||
# 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 | ||
workflow_dispatch: | ||
|
||
# This job installs dependencies and builds the book | ||
jobs: | ||
deploy-book: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: conda-incubator/setup-miniconda@v3 | ||
with: | ||
environment-file: environment.yml | ||
activate-environment: arcdocs-jb | ||
|
||
# Build the book | ||
- name: Build the book | ||
shell: bash -l {0} | ||
run: | | ||
conda activate arcdocs-jb | ||
jupyter-book build ./book/ |