We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b1302ab commit 56a303fCopy full SHA for 56a303f
.github/workflows/deploy.yml
@@ -0,0 +1,24 @@
1
+name: Deploy MkDocs to GitHub Pages
2
+
3
+on:
4
+ push:
5
+ branches: [ "main" ]
6
7
+permissions:
8
+ contents: write
9
10
+jobs:
11
+ deploy:
12
+ runs-on: ubuntu-latest
13
+ steps:
14
+ - uses: actions/checkout@v4
15
+ - uses: actions/setup-python@v5
16
+ with:
17
+ python-version: "3.11"
18
+ - name: Install deps
19
+ run: |
20
+ python -m pip install --upgrade pip
21
+ pip install mkdocs mkdocs-material
22
+ - name: Deploy
23
24
+ mkdocs gh-deploy --force
0 commit comments