File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 14
14
15
15
- restore_cache :
16
16
keys :
17
- - pip-cache-{{ checksum "site-requirements .txt" }}
17
+ - pip-cache-{{ checksum "site_requirements .txt" }}
18
18
19
19
- run :
20
20
name : Install Node.js
@@ -31,15 +31,15 @@ jobs:
31
31
name : Install Python dependencies
32
32
command : |
33
33
python -m pip install --upgrade pip
34
- if [ -f site-requirements .txt ]; then pip install -r site-requirements .txt; fi
34
+ if [ -f site_requirements .txt ]; then pip install -r site_requirements .txt; fi
35
35
36
36
- save_cache :
37
37
key : node-cache-v1
38
38
paths :
39
39
- node_modules
40
40
41
41
- save_cache :
42
- key : pip-cache-{{ checksum "site-requirements .txt" }}
42
+ key : pip-cache-{{ checksum "site_requirements .txt" }}
43
43
paths :
44
44
- ~/.cache/pip
45
45
You can’t perform that action at this time.
0 commit comments