build docs
This commit is contained in:
parent
a6e7aa287d
commit
7bb53d616b
|
|
@ -0,0 +1,22 @@
|
|||
name: build_docs
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- main
|
||||
- rearch
|
||||
permissions:
|
||||
contents: write
|
||||
jobs:
|
||||
deploy:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- uses: actions/setup-python@v4
|
||||
with:
|
||||
python-version: 3.x
|
||||
- uses: actions/cache@v2
|
||||
with:
|
||||
key: ${{ github.ref }}
|
||||
path: .cache
|
||||
- run: pip install mkdocs-material
|
||||
- run: mkdocs gh-deploy --force
|
||||
|
|
@ -0,0 +1,2 @@
|
|||
theme:
|
||||
name: material
|
||||
Loading…
Reference in New Issue