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 551367f commit a263759Copy full SHA for a263759
.github/workflows/docs.yml
@@ -0,0 +1,30 @@
1
+name: Deploy MkDocs
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - master
7
8
+permissions:
9
+ contents: write
10
11
+jobs:
12
+ deploy:
13
+ runs-on: ubuntu-latest
14
15
+ steps:
16
+ - name: Checkout repository
17
+ uses: actions/checkout@v4
18
19
+ - name: Set up Python
20
+ uses: actions/setup-python@v5
21
+ with:
22
+ python-version: 3.x
23
24
+ - name: Install dependencies
25
+ run: |
26
+ pip install "mkdocs<2.0"
27
+ pip install mkdocs-material
28
29
+ - name: Deploy to GitHub Pages
30
+ run: mkdocs gh-deploy --force
0 commit comments