Skip to content

Commit 993d6e9

Browse files
authored
add docs workflow
1 parent 22fc21f commit 993d6e9

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

.github/workflows/docs.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
name: Publish docs
2+
on:
3+
push:
4+
branches:
5+
- main
6+
jobs:
7+
deploy:
8+
runs-on: ubuntu-latest
9+
steps:
10+
- uses: actions/checkout@v2
11+
- uses: actions/setup-python@v2
12+
with:
13+
python-version: 3.x
14+
- run: pip install mkdocs
15+
- run: pip install mkdocs-material
16+
- run: mkdocs gh-deploy --force --clean --verbose

0 commit comments

Comments
 (0)