[chore] ExtensionMetadata was added at Sphinx 7.3 #69
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: Build document | |
on: [push] | |
jobs: | |
docs: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: '3.10' | |
- name: Install build dependencies | |
run: | | |
python -m pip install -U pip | |
python -m pip install . myst-parser | |
- name: Build document | |
run: | | |
cd docs/ | |
make html | |
- name: Push to GitHub Pages branch | |
uses: ftnext/action-push-ghpages@v1.0.0 | |
with: | |
build_dir: docs/_build/html | |
github_token: ${{ secrets.GITHUB_TOKEN }} |