Skip to content

Python ver bump (#74) #50

Python ver bump (#74)

Python ver bump (#74) #50

Workflow file for this run

---
name: "Documentation"
on:
push:
branches:
- "develop"
jobs:
documentation:
name: "Documentation"
runs-on: "ubuntu-latest"
steps:
- name: "Check out repository code"
uses: "actions/checkout@v2"
- name: "Setup environment"
uses: "networktocode/gh-action-setup-poetry-environment@v3"
- name: "Sphinx Build"
run: "poetry run sphinx-build -vvv -b html ./docs ./docs/public"
- name: "Deploy auto generated documentation to GH-Pages"
uses: "peaceiris/actions-gh-pages@v3"
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: "./docs/public"