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 645550f commit 1c4d45eCopy full SHA for 1c4d45e
.github/workflows/docs.yml
@@ -0,0 +1,19 @@
1
+name: Build docs
2
+
3
+on:
4
+ push:
5
+ branches: [main]
6
+ workflow_dispatch:
7
8
+jobs:
9
+ deploy:
10
+ permissions:
11
+ contents: write
12
+ runs-on: ubuntu-latest
13
+ steps:
14
+ - uses: actions/checkout@v4
15
+ - uses: actions/setup-python@v5
16
+ with:
17
+ python-version: '3.12'
18
+ - run: pip install mkdocs mkdocs-material
19
+ - run: mkdocs gh-deploy --force --config-file mkdocs.yml
0 commit comments