Skip to content

v1.0.1

v1.0.1 #16

Workflow file for this run

name: "Build and deploy Github pages"
on:
push:
tags:
- "v[0-9]+\\.[0-9]+\\.[0-9]+"
- "v[0-9]+\\.[0-9]+\\.[0-9]+-[0-9]+"
jobs:
build-and-deploy:
name: "Build and deploy Sphinx documentation"
runs-on: ubuntu-latest
steps:
- name: "Checkout the repository"
uses: actions/checkout@v5
with:
persist-credentials: false
submodules: true
- name: "Set up Python"
uses: actions/setup-python@v6
with:
python-version: "3.14"
- name: "Install Python dependencies"
run: |
pip3 install nox
- name: "Build Sphinx Doc"
run: |
nox -s gendoc
- name: "Deploy Github Pages"
uses: JamesIves/github-pages-deploy-action@v4
with:
branch: gh-pages
folder: build/html/