Skip to content

Bump JamesIves/github-pages-deploy-action from 4.8.0 to 4.9.0 #259

Bump JamesIves/github-pages-deploy-action from 4.8.0 to 4.9.0

Bump JamesIves/github-pages-deploy-action from 4.8.0 to 4.9.0 #259

Workflow file for this run

name: Build docs
on:
push:
branches:
- main
tags:
- 'v*'
pull_request:
workflow_dispatch:
jobs:
build-docs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v7
- name: Set up Python
uses: actions/setup-python@v6
with:
python-version: 3.9
- uses: actions/cache@v5
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('**/setup.py') }}
restore-keys: |
${{ runner.os }}-pip-
- name: Install dependencies
run: |
pip install torch --index-url https://download.pytorch.org/whl/cpu
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 or manually triggered
if: startsWith(github.ref, 'refs/tags') || (github.event_name == 'workflow_dispatch' && github.ref == 'refs/heads/main')
uses: JamesIves/github-pages-deploy-action@v4.9.0
with:
branch: gh-pages
folder: doc/_build/html