We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d0e3628 commit 8602fffCopy full SHA for 8602fff
.github/workflows/publish-docs.yml
@@ -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
15
+ python-version: 3.x
16
+ - run: pip install -r requirements/build-docs.txt
17
+ - run: mkdocs gh-deploy --force
0 commit comments