v1.2.4 release #103
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: Deploy GitHub Pages | |
on: | |
push: | |
branches: | |
- main | |
workflow_dispatch: | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Setup Python environment | |
uses: actions/setup-python@v4 | |
with: | |
python-version: 3.9 | |
- name: Setup pandoc, required for nbsphinx | |
uses: r-lib/actions/setup-pandoc@v2 | |
with: | |
pandoc-version: "2.17.1" | |
- name: Try to load cached dependencies | |
uses: actions/cache@v3 | |
id: restore-cache | |
with: | |
path: ${{ env.pythonLocation }} | |
key: python-docs-dependencies-${{ hashFiles('pyproject.toml') }}-${{ env.pythonLocation }} | |
- name: Install dependencies on cache miss | |
run: | | |
pip install --no-cache-dir --upgrade pip | |
pip install --no-cache-dir ".[docs]" | |
if: steps.restore-cache.outputs.cache-hit != 'true' | |
- name: Build Sphinx | |
run: python -m sphinx -Ea docs build | |
- name: Deploy Sphinx | |
uses: peaceiris/actions-gh-pages@v3 | |
if: ${{ github.ref == 'refs/heads/main' }} | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
publish_dir: ./build |