Skip to content

Commit c05c4a5

Browse files
committed
Add _build to book cache
1 parent cb804a3 commit c05c4a5

1 file changed

Lines changed: 5 additions & 3 deletions

File tree

.github/workflows/build_docs.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,19 +25,21 @@ jobs:
2525
with:
2626
python-version: "3.10"
2727

28-
- name: Install dependencies
29-
run: python3 -m pip install -r requirements-docs.txt
30-
3128
- name: Cache
3229
id: cache
3330
uses: actions/cache@v3
3431
with:
3532
path: |
3633
~/.cache/pip
34+
~/_build
3735
key: cache_v1
3836
restore-keys: |
3937
cache_v1
4038
39+
- name: Install dependencies
40+
run: python3 -m pip install -r requirements-docs.txt
41+
42+
4143
- name: Build docs
4244
run: jupyter book build .
4345

0 commit comments

Comments
 (0)