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 Nov 15, 2020
1 parent 0f7a270 commit 026fd20
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 @@ -42,16 +42,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-moss-bundle-v1-{{ checksum "Gemfile.lock" }}
- rails-moss-bundle-v1-

- 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-moss-bundle-v1-{{ checksum "Gemfile.lock" }}
paths:
- vendor/bundle

Expand Down

0 comments on commit 026fd20

Please sign in to comment.