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 9c37544 commit 0ae55c1Copy full SHA for 0ae55c1
.github/publishdocs.yml
@@ -0,0 +1,22 @@
1
+---
2
+name: Publish docs via GitHub Pages
3
+on:
4
+ push:
5
+ branches:
6
+ - main
7
+
8
+jobs:
9
+ build:
10
+ name: Deploy docs
11
+ runs-on: ubuntu-latest
12
+ steps:
13
+ - name: Checkout main
14
+ uses: actions/checkout@v4
15
16
+ - name: Deploy docs
17
+ uses: mhausenblas/mkdocs-deploy-gh-pages@master
18
+ env:
19
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
20
+ CONFIG_FILE: mkdocs.yml
21
+ EXTRA_PACKAGES: build-base
22
+ REQUIREMENTS: requirements.txt
0 commit comments