Skip to content

Commit

Permalink
Replace braces for CircleCI config
Browse files Browse the repository at this point in the history
circleci/circleci-docs@719a71c にて
キャッシュに使われる値を置換させるためのブレースの仕様が変更になった。
その変更に追随させる。
  • Loading branch information
ykzts committed Mar 2, 2017
1 parent 268cb14 commit a4094b6
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .circleci/config.yml
Expand Up @@ -10,7 +10,7 @@ jobs:
steps:
- checkout
- restore_cache:
key: baberutv-yarn-{{ .Branch }}
key: baberutv-yarn-<< .Branch >>
- run:
name: Install Yarn
command: |
Expand All @@ -21,16 +21,16 @@ jobs:
echo "The correct version of Yarn is already installed."
fi
- save_cache:
key: baberutv-yarn-{{ .Branch }}
key: baberutv-yarn-<< .Branch >>
paths:
- ~/.yarn
- restore_cache:
key: baberutv-dependencies-{{ checksum "yarn.lock" }}
key: baberutv-dependencies-<< checksum "yarn.lock" >>
- run:
name: Install Dependencies
command: yarn
- save_cache:
key: baberutv-dependencies-{{ checksum "yarn.lock" }}
key: baberutv-dependencies-<< checksum "yarn.lock" >>
paths:
- ~/.cache/yarn
- ./node_modules
Expand Down

0 comments on commit a4094b6

Please sign in to comment.