We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 01530c0 commit 2b32408Copy full SHA for 2b32408
1 file changed
.github/workflows/pages.yml
@@ -0,0 +1,22 @@
1
+name: Publish notes
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
16
+ - uses: actions/setup-python@v5
17
+ with:
18
+ python-version: '3.x'
19
20
+ - run: pip install mkdocs-material
21
22
+ - run: mkdocs gh-deploy --force
0 commit comments