Skip to content

Remove msmb_theme

Remove msmb_theme #2

Workflow file for this run

# .github/workflows/update-docs.yml
name: Build and Deploy Documentation
on:
push:
branches:
- master
paths:
- 'doc/**'
jobs:
build-deploy-docs:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.x'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install sphinx
pip install .
- name: Build documentation
working-directory: doc
run: make html
- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v4
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./doc/_build/html
publish_branch: gh-pages
force_orphan: true