We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6388497 commit b42d3d9Copy full SHA for b42d3d9
.github/workflows/ci.yml
@@ -14,10 +14,18 @@ jobs:
14
- uses: actions/setup-python@v4
15
with:
16
python-version: 3.x
17
- - uses: actions/cache@v3
+ - name: Set up build cache
18
+ - uses: actions/cache/restore@v4
19
- key: ${{ github.ref }}
20
- path: .cache
+ key: mkdocs-material-${{ hashfiles('.cache/**') }}
21
+ path: ~/.cache
22
+ restore-keys: |
23
+ mkdocs-material-
24
- run: pip install mkdocs-material
25
- run: pip install pillow cairosvg
- - run: mkdocs gh-deploy --force
26
+ - run: mkdocs gh-deploy --force
27
+ - name: Save build cache
28
+ - uses: actions/cache/save@v4
29
+ with:
30
31
0 commit comments