Skip to content

Commit

Permalink
fix: Change cache value
Browse files Browse the repository at this point in the history
  • Loading branch information
ArnoHolo committed Dec 16, 2019
1 parent d1f0a13 commit 6f2d4d2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,16 +30,16 @@ jobs:
# Restore bundle cache: https://circleci.com/docs/2.0/caching/
- restore_cache:
keys:
- rails-demo-bundle-v2-{{ checksum "Gemfile.lock" }}
- rails-demo-bundle-v2-
- rails-demo-bundle-v2-2-{{ checksum "Gemfile.lock" }}
- rails-demo-bundle-v2-2-

- run: # Install Ruby dependencies
name: Bundle Install
command: bundle check --path vendor/bundle || bundle install --deployment

# Store bundle cache for Ruby dependencies
- save_cache:
key: rails-demo-bundle-v2-{{ checksum "Gemfile.lock" }}
key: rails-demo-bundle-v2-2-{{ checksum "Gemfile.lock" }}
paths:
- vendor/bundle

Expand Down

0 comments on commit 6f2d4d2

Please sign in to comment.