Skip to content

Commit cb5c157

Browse files
committed
add mkdocs
1 parent de3d3b2 commit cb5c157

37 files changed

+1220
-815
lines changed

.github/workflows/docs.yaml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
on:
2+
workflow_run:
3+
workflows: ["ci"]
4+
branches: [main]
5+
types:
6+
- completed
7+
jobs:
8+
docs:
9+
runs-on: ubuntu-latest
10+
if: ${{ github.event.workflow_run.conclusion == 'success' }}
11+
steps:
12+
- uses: actions/checkout@v2
13+
- uses: actions/setup-python@v2
14+
with:
15+
python-version: 3.x
16+
- run: pip install mkdocs-material
17+
- run: mkdocs gh-deploy --force

0 commit comments

Comments
 (0)