Add documentaion, finalizing experimental
This commit is contained in:
32
.github/workflows/deploy-docs.yml
vendored
Normal file
32
.github/workflows/deploy-docs.yml
vendored
Normal file
@@ -0,0 +1,32 @@
|
||||
name: Deploy Documentation
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- main
|
||||
- beta
|
||||
- experimental
|
||||
paths:
|
||||
- 'docs/**'
|
||||
jobs:
|
||||
deploy:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
with:
|
||||
fetch-depth: 0
|
||||
|
||||
- name: Set up Python
|
||||
uses: actions/setup-python@v4
|
||||
with:
|
||||
python-version: '3.10'
|
||||
|
||||
- name: Install dependencies
|
||||
run: |
|
||||
python -m pip install --upgrade pip
|
||||
pip install mkdocs-material
|
||||
|
||||
- name: Deploy docs
|
||||
run: |
|
||||
cd docs
|
||||
mkdocs gh-deploy --force
|
||||
Reference in New Issue
Block a user