Merge pull request #155 from ocefpaf/fix_links #51
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: Build and Deploy docs | |
on: | |
pull_request: | |
push: | |
branches: [main] | |
jobs: | |
build-docs: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup Micromamba | |
uses: mamba-org/setup-micromamba@v1 | |
with: | |
environment-name: IOOS | |
init-shell: bash | |
create-args: >- | |
--file .binder/conda-lock.yml | |
- name: Build documentation | |
shell: bash -l {0} | |
run: | | |
set -e | |
jupyter-book build jupyterbook --builder linkcheck | |
- name: GitHub Pages action | |
if: github.ref == 'refs/heads/main' | |
uses: peaceiris/actions-gh-pages@v3 | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
publish_dir: jupyterbook/_build/html |