Skip to content

Commit e8df6a2

Browse files
committed
github action toevoegen.
1 parent edaf515 commit e8df6a2

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

.github/workflows/mkdocs.yml

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

0 commit comments

Comments
 (0)