We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ef0a605 commit e5e6ee9Copy full SHA for e5e6ee9
.circleci/config.yml
@@ -28,20 +28,20 @@ jobs:
28
# Reference: https://www.benpickles.com/articles/76-better-ruby-gem-caching-on-circleci
29
- restore_cache:
30
keys:
31
- - bundler-{{ checksum "Gemfile.lock" }}-v2
32
- - bundler-
+ - bundler-v2-{{ checksum "Gemfile.lock" }}
+ - bundler-v2-
33
34
- run: bundle install --clean --path vendor/bundle
35
36
- save_cache:
37
- key: bundler-{{ checksum "Gemfile.lock" }}-v2
+ key: bundler-v2-{{ checksum "Gemfile.lock" }}
38
paths:
39
- vendor/bundle
40
41
# Cache Dependencies
42
- type: cache-save
43
name: Store bundle cache
44
- key: tutor_virtual-{{ checksum "Gemfile.lock" }}-v2
+ key: tutor_virtual-v2-{{ checksum "Gemfile.lock" }}
45
46
47
0 commit comments