Fix python dependency version (#522) #11
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 Documentation | |
on: | |
push: | |
branches: | |
- master | |
permissions: | |
contents: read | |
pages: write | |
id-token: write | |
concurrency: | |
group: "documentation" | |
cancel-in-progress: true | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Setup Pages | |
uses: actions/configure-pages@v3 | |
- name: Configure Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: "3.7" | |
- name: Configure dependencies | |
run: | | |
pip install --user --upgrade pip | |
pip install --user pipx | |
pipx ensurepath | |
pipx install sphinx==5.3.0 | |
pipx inject sphinx pyjwt cryptography sphinx-mdinclude sphinx-rtd-theme sphinx-autodoc-typehints | |
- name: Build documentation | |
run: | | |
sphinx-build ./docs/source ./docs/build --keep-going -n -a -b html | |
- name: Upload artifact | |
uses: actions/upload-pages-artifact@v2 | |
with: | |
path: "./docs/build" | |
deploy: | |
needs: build | |
runs-on: ubuntu-latest | |
environment: | |
name: "github-pages" | |
url: ${{ steps.deployment.outputs.page_url }} | |
steps: | |
- id: deployment | |
name: Deploy to GitHub Pages | |
uses: actions/deploy-pages@v2 |