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 0b272e3 commit 0b77ce0Copy full SHA for 0b77ce0
.github/workflows/docs.yml
@@ -0,0 +1,29 @@
1
+name: docs
2
+on:
3
+ push:
4
+ branches:
5
+ - mc1.20.1
6
+
7
+permissions:
8
+ contents: write
9
10
+jobs:
11
+ deploy:
12
+ runs-on: ubuntu-latest
13
14
+ steps:
15
+ - uses: actions/checkout@v3
16
+ - uses: actions/setup-python@v4
17
+ with:
18
+ python-version: 3.x
19
20
+ - run: echo "cache_id=$(date --utc '+%V')" >> $GITHUB_ENV
21
+ - uses: actions/cache@v3
22
23
+ key: mkdocs-material-${{ env.cache_id }}
24
+ path: .cache
25
+ restore-keys: |
26
+ mkdocs-material-
27
28
+ - run: pip install mkdocs-material mkdocs-minify-plugin mkdocs-glightbox pillow cairosvg
29
+ - run: mkdocs gh-deploy --force
0 commit comments