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 fc3b294 commit 450b327Copy full SHA for 450b327
.github/workflows/mkdocs.yml
@@ -0,0 +1,23 @@
1
+name: Publish docs via GitHub Pages
2
+on:
3
+ push:
4
+ branches:
5
+ - master
6
+
7
+jobs:
8
+ build:
9
+ name: Deploy docs
10
+ runs-on: ubuntu-latest
11
+ steps:
12
+ - name: Checkout main
13
+ uses: actions/checkout@v2
14
15
+ - name: Deploy docs
16
+ uses: mhausenblas/mkdocs-deploy-gh-pages@master
17
+ # Or use mhausenblas/mkdocs-deploy-gh-pages@nomaterial to build without the mkdocs-material theme
18
+ env:
19
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
20
+ CONFIG_FILE: mkdocs.yml
21
+ EXTRA_PACKAGES: build-base
22
+ # GITHUB_DOMAIN: github.myenterprise.com
23
+ REQUIREMENTS: requirements.txt
0 commit comments