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.
2 parents 76132cc + da754ee commit 282c8dbCopy full SHA for 282c8db
1 file changed
.github/workflows/deploy-docs.yml
@@ -1,27 +1,34 @@
1
name: deploy-docs
2
+
3
on:
4
push:
5
branches:
6
- main
7
+ workflow_dispatch:
8
9
jobs:
10
deploy:
11
runs-on: ubuntu-latest
12
permissions:
13
contents: write
14
steps:
15
- uses: actions/checkout@v3
16
17
- uses: actions/setup-python@v4
18
with:
19
python-version: 3.x
-# - run: echo "cache_id=$(date --utc '+%V')" >> $GITHUB_ENV
20
21
- uses: actions/cache@v3
22
- key: mkdocs-material-${{ env.cache_id }}
23
+ key: mkdocs-material
24
path: .cache
25
restore-keys: |
- mkdocs-material-
26
+ mkdocs-material
27
28
- run: pip install \
29
+ mkdocs \
30
mkdocs-material==9.6.8 \
31
mkdocs-awesome-pages-plugin==2.9.1 \
32
mkdocs-autolinks-plugin==0.7.1
33
34
- run: mkdocs gh-deploy --force
0 commit comments