Bump JamesIves/github-pages-deploy-action from 4.5.0 to 4.6.0 #130
Workflow file for this run
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 docs | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
jobs: | |
build-docs: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: 3.9 | |
- uses: actions/cache@v4 | |
with: | |
path: ~/.cache/pip | |
key: ${{ runner.os }}-pip-${{ hashFiles('**/setup.py') }} | |
restore-keys: | | |
${{ runner.os }}-pip- | |
- name: Install dependencies | |
run: | | |
pip install -e ."[github]" | |
pip install numpydoc sphinx sphinx_gallery sphinxcontrib-mermaid | |
- name: Build documents | |
run: | | |
cd doc && make html && cd .. | |
touch doc/_build/html/.nojekyll | |
- name: Publish to gh-pages if tagged | |
if: startsWith(github.ref, 'refs/tags') | |
uses: JamesIves/[email protected] | |
with: | |
branch: gh-pages | |
folder: doc/_build/html |