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 0a24547 commit 73bf145Copy full SHA for 73bf145
.github/workflows/docs.yml
@@ -0,0 +1,18 @@
1
+name: Publish Documentation
2
+
3
+on: push
4
+ # push:
5
+ # branches:
6
+ # - main
7
+ # workflow_dispatch:
8
9
+jobs:
10
+ docs:
11
+ runs-on: ubuntu-latest
12
+ steps:
13
+ - uses: actions/checkout@v3
14
+ - uses: actions/setup-python@v4
15
+ - run: pip install --upgrade pip && pip install -r requirements/requirements-dev.txt
16
+ - run: git config user.name 'github-actions[bot]' && git config user.email 'github-actions[bot]@users.noreply.github.com'
17
+ - name: Publish docs
18
+ run: mkdocs gh-deploy
0 commit comments