Skip to content

fix: local installation command #9

fix: local installation command

fix: local installation command #9

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 .
- run: cd docs && mkdocs gh-deploy --force --clean --verbose