Skip to content

[pre-commit.ci] pre-commit autoupdate #327

[pre-commit.ci] pre-commit autoupdate

[pre-commit.ci] pre-commit autoupdate #327

Workflow file for this run

name: Docs
on:
pull_request:
release:
types: [published]
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref }}
cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
submodules: true
fetch-depth: 0 # needed for setuptools_scm
# must come after checkout
- uses: hendrikmuhs/[email protected]
with:
key: ${{ github.job }}-${{ matrix.os }}-${{ matrix.python-version }}
- uses: actions/setup-python@v4
with:
python-version: "3.11"
- run: sudo apt-get install pandoc
- run: python -m pip install --prefer-binary -v .[doc]
- run: python -m ipykernel install --user --name python3
- run: python docs/build.py
- uses: actions/upload-pages-artifact@v1
with:
path: "docs/_build/html"
deploy:
if: github.ref_type == 'tag' || github.ref_name == 'main'
needs: build
# Set permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
permissions:
contents: read
pages: write
id-token: write
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- uses: actions/configure-pages@v2
- uses: actions/deploy-pages@v1