From 20de5dcd2abf943b2d5004d1027c09208b910c3d Mon Sep 17 00:00:00 2001 From: Jeff Dickey <216188+jdxcode@users.noreply.github.com> Date: Thu, 1 Feb 2018 16:02:26 -0800 Subject: [PATCH] fix: fixed restore cache step --- templates/circle.yml.ejs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/templates/circle.yml.ejs b/templates/circle.yml.ejs index c569bcb..384f283 100644 --- a/templates/circle.yml.ejs +++ b/templates/circle.yml.ejs @@ -65,7 +65,9 @@ jobs: <<: *test steps: - checkout - - restore_cache: { keys: [v001-{{checksum ".circleci/config.yml"}}-{{checksum "yarn.lock"}}] } + - restore_cache: + keys: + - v0-{{checksum ".circleci/config.yml"}}-{{ checksum "yarn.lock"}} - attach_workspace: {at: node_modules} - run: yarn global add greenkeeper-lockfile@1<%- semantic_release ? '@anycli/semantic-release@1 semantic-release@12' : '' %> - run: yarn add -D $DEPS