Skip to content

Commit 4ccad46

Browse files
committed
fix: correct sphinx doctrees cache path
1 parent 3f2bd78 commit 4ccad46

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jobs:
4242
- name: Restore Sphinx build cache
4343
uses: actions/cache@5a3ec84eff668545956fd18022155c47e93e2684 # v4.2.3
4444
with:
45-
path: _build/.doctrees
45+
path: _build/html/.doctrees
4646
key: sphinx-doctrees-${{ github.sha }}
4747
restore-keys: |
4848
sphinx-doctrees-

.github/workflows/preview.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ jobs:
7474
if: github.event.action != 'closed'
7575
uses: actions/cache@5a3ec84eff668545956fd18022155c47e93e2684 # v4.2.3
7676
with:
77-
path: _build/.doctrees
77+
path: _build/html/.doctrees
7878
key: sphinx-doctrees-preview-${{ github.event.pull_request.head.sha }}
7979
restore-keys: |
8080
sphinx-doctrees-preview-

0 commit comments

Comments
 (0)