Skip to content

Commit 8602fff

Browse files
committed
add gh pages publishing workflow
1 parent d0e3628 commit 8602fff

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

.github/workflows/publish-docs.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: Publish Docs
2+
on:
3+
push:
4+
branches:
5+
- new-docs
6+
jobs:
7+
deploy:
8+
runs-on: ubuntu-latest
9+
steps:
10+
- uses: actions/checkout@v3
11+
with:
12+
fetch-depth: 0
13+
- uses: actions/setup-python@v4
14+
with:
15+
python-version: 3.x
16+
- run: pip install -r requirements/build-docs.txt
17+
- run: mkdocs gh-deploy --force

0 commit comments

Comments
 (0)