2023-02-12 06:23:15 -05:00
|
|
|
name: docs
|
2023-02-13 10:23:00 -05:00
|
|
|
on:
|
|
|
|
push:
|
|
|
|
paths:
|
|
|
|
- docs/**
|
2023-02-12 06:23:15 -05:00
|
|
|
jobs:
|
|
|
|
deploy:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
- uses: actions/setup-python@v2
|
|
|
|
with:
|
|
|
|
python-version: 3.x
|
|
|
|
- run: |
|
|
|
|
pip install mkdocs-material==8.5.11 mkdocs-redirects
|
|
|
|
cd docs
|
|
|
|
mkdocs gh-deploy --force
|