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 a1573b7 commit a500d83Copy full SHA for a500d83
.github/workflows/docs.yml
@@ -13,13 +13,16 @@ jobs:
13
deploy:
14
runs-on: ubuntu-latest
15
steps:
16
- - uses: actions/checkout@v3
17
- - uses: actions/setup-python@v4
+ - uses: actions/checkout@v4
+ - uses: actions/setup-python@v5
18
with:
19
python-version: 3.x
20
- - uses: actions/cache@v2
+ - run: echo "cache_id=$(date --utc '+%V')" >> $GITHUB_ENV
21
+ - uses: actions/cache@v4
22
- key: ${{ github.ref }}
23
+ key: mkdocs-material-${{ env.cache_id }}
24
path: .cache
25
+ restore-keys: |
26
+ mkdocs-material-
27
- run: pip install -r docs/requirements.txt
28
- run: mkdocs gh-deploy --force
0 commit comments