fix: update installation docs and release #9
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: Documentation | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
docs: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: 3.12 | |
- run: sudo apt install pipx && pipx ensurepath | |
- run: pipx install poetry | |
- run: poetry install | |
- name: Build docs | |
run: poetry run mkdocs build | |
- name: Publish docs | |
run: poetry run mkdocs gh-deploy --force |