File tree Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -49,18 +49,19 @@ jobs: # a collection of steps
49
49
- run :
50
50
name : Bump version and generate changelog
51
51
command : npm run release:ci
52
- - save_cache : # special step to save the cache
53
- key : versioned -cache-{{ checksum "package-lock.json" }}
52
+ - save_cache : # special step to save the changelog
53
+ key : changelog -cache-{{ checksum "package-lock.json" }}
54
54
paths :
55
- - ~/tmp/node_modules
56
55
- ~/tmp/CHANGELOG.md
57
56
58
57
build : # build the project - requires dependencies to have been installed
59
58
executor : node-project
60
59
steps :
61
60
- checkout
62
61
- restore_cache :
63
- key : versioned-cache-{{ checksum "package-lock.json" }}
62
+ key : dependency-cache-{{ checksum "package-lock.json" }}
63
+ - restore_cache :
64
+ key : changelog-cache-{{ checksum "package-lock.json" }}
64
65
- run : # run build
65
66
name : Build
66
67
command : |
You can’t perform that action at this time.
0 commit comments