Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
39 changes: 39 additions & 0 deletions .github/workflows/documentation.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
# Workflow to publish the documentation website on github pages for tagged releases

name: Documentation

on:
release:
types: [published]

workflow_dispatch:

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.13"

- name: Install sphinx
run: |
pip install sphinx

- name: Build docs
run: |
sphinx-build doc _build

- name: Upload artifacts
uses: actions/upload-pages-artifact@v3
with:
path: "doc/_build/html"

- name: Deploy to GitHub pages
id: deployment
uses: actions/deploy-pages@v4




Loading