Building and releasing stubs #2
Workflow file for this run
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: Docs | |
on: | |
push: | |
tags: | |
- '*' | |
# Manual run | |
workflow_dispatch: | |
permissions: | |
contents: write | |
jobs: | |
docs: | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-python@v3 | |
- uses: ts-graphviz/setup-graphviz@v1 | |
- name: Install dependencies | |
run: | | |
pip install sphinx sphinx_rtd_theme | |
pip install --exists-action=w --no-cache-dir -r docs/requirements.txt | |
pip install --exists-action=w --no-cache-dir -r docs/rtd-requirements.txt | |
- name: Sphinx build | |
run: | | |
sphinx-build docs/source _build | |
- name: Deploy | |
uses: peaceiris/actions-gh-pages@v3 | |
with: | |
publish_branch: gh-pages | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
publish_dir: _build/ | |
force_orphan: true |