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 e276bd3 commit ef6668eCopy full SHA for ef6668e
1 file changed
.github/workflows/publish-docs.yml
@@ -0,0 +1,26 @@
1
+name: Publish Docs
2
+on:
3
+ push:
4
+ branches:
5
+ - main
6
+
7
+permissions:
8
+ contents: write
9
10
+jobs:
11
+ deploy:
12
+ runs-on: macos-latest
13
+ steps:
14
+ - uses: actions/checkout@v6
15
+ - uses: actions/setup-python@v6
16
+ with:
17
+ python-version: 3.x
18
+ - run: echo "cache_id=$(date --utc '+%V')" >> $GITHUB_ENV
19
+ - uses: actions/cache@v5
20
21
+ key: mkdocs-material-${{ env.cache_id }}
22
+ path: .cache
23
+ restore-keys: |
24
+ mkdocs-material-
25
+ - run: pip install mkdocs-material
26
+ - run: mkdocs gh-deploy --force
0 commit comments