Skip to content

Commit

Permalink
Merge pull request #1665 from tvdeyen/fix-restore-bundle-cache
Browse files Browse the repository at this point in the history
Run bundle install on CI even if cache hits
  • Loading branch information
tvdeyen authored Nov 1, 2019
2 parents 422be7e + 627ae01 commit e69d74e
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
- name: Install bundler
run: |
gem install bundler
- name: Cache Ruby Gems
- name: Restore Ruby Gems cache
id: cache
uses: actions/cache@preview
with:
Expand All @@ -52,7 +52,6 @@ jobs:
${{ runner.os }}-bundle-
- name: Install bundle
timeout-minutes: 10
if: steps.cache.outputs.cache-hit != 'true'
run: |
bundle install --jobs 4 --retry 3 --path vendor/bundle
- name: Prepare database
Expand Down

0 comments on commit e69d74e

Please sign in to comment.