Skip to content

fix: move to using poetry for docs install #10

fix: move to using poetry for docs install

fix: move to using poetry for docs install #10

Workflow file for this run

name: build-docs
on:
push:
branches:
- master
paths:
- docs/**
- .github/**
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: 3.x
- run: pip install mkdocs
- run: pip install mkdocs-material
- run: pip install mkdocs-typer
- run: pip install poetry
- run: poetry install
- run: cd docs && mkdocs gh-deploy --force --clean --verbose