Skip to content

Commit e13ba40

Browse files
Update build_docs.yaml
1 parent 9ffa4f8 commit e13ba40

File tree

1 file changed

+11
-3
lines changed

1 file changed

+11
-3
lines changed

.github/workflows/build_docs.yaml

+11-3
Original file line numberDiff line numberDiff line change
@@ -31,10 +31,18 @@ jobs:
3131
id: pip-cache
3232
run: echo "dir=$(pip cache dir)" >> $GITHUB_OUTPUT
3333

34-
- name: Cache dependencies
35-
uses: actions/cache@v3
34+
# - name: Cache dependencies
35+
# uses: actions/cache@v3
36+
# with:
37+
# path: ${{ steps.pip-cache.outputs.dir }}
38+
# key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}
39+
# restore-keys: |
40+
# ${{ runner.os }}-pip-
41+
42+
- name: Cache pip dependencies
43+
uses: actions/cache@v2
3644
with:
37-
path: ${{ steps.pip-cache.outputs.dir }}
45+
path: ~/.cache/pip
3846
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}
3947
restore-keys: |
4048
${{ runner.os }}-pip-

0 commit comments

Comments
 (0)