Skip to content

Commit d7d9e05

Browse files
committed
Debug GitHub Actions workflow
1 parent 3ed984d commit d7d9e05

File tree

2 files changed

+11
-2
lines changed

2 files changed

+11
-2
lines changed

Diff for: .github/workflows/build.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -47,8 +47,8 @@ jobs:
4747
uses: actions/cache@v3
4848
id: cache
4949
with:
50-
path: node_modules
5150
key: ${{ runner.os }}-${{ hashFiles('**/package-lock.json') }}
51+
path: node_modules
5252

5353
- name: Set up Node.js dependencies
5454
if: steps.cache.outputs.cache-hit != 'true'

Diff for: .github/workflows/documentation.yml

+10-1
Original file line numberDiff line numberDiff line change
@@ -44,12 +44,21 @@ jobs:
4444
with:
4545
python-version: ${{ env.PYTHON_VERSION }}
4646

47+
- name: Set up build cache
48+
uses: actions/cache@v3
49+
id: cache
50+
with:
51+
key: ${{ runner.os }}-${{ hashFiles('.cache/**', 'authors.json') }}
52+
path: |
53+
.cache
54+
authors.json
55+
4756
- name: Install Python dependencies
4857
run: |
4958
pip install .
5059
pip install \
5160
"mkdocs-git-committers-plugin-2>=0.4" \
52-
"mkdocs-git-revision-date-plugin>=0.3" \
61+
"mkdocs-git-revision-date-localized-plugin>=1.0" \
5362
"mkdocs-minify-plugin>=0.3" \
5463
"mkdocs-redirects>=1.0"
5564

0 commit comments

Comments
 (0)