Skip to content

Commit 74257be

Browse files
fixup! ci: cache even when job fails
1 parent 62ee2a0 commit 74257be

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/actions/install-ruby/action.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -61,20 +61,20 @@ runs:
6161
env:
6262
GEMFILE: ${{ env.BUNDLE_GEMFILE || 'Gemfile' }}
6363
with:
64-
path: ./vendor/bundle
64+
path: ../vendor/bundle
6565
key: bundler-ruby-${{ inputs.version }}-${{ inputs.openssl-version }}-${{ hashFiles(env.Gemfile, 'webauthn.gemspec') }}
6666

6767
- name: Install dependencies
6868
if: steps.cache-bundler-restore.outputs.cache-hit != 'true'
6969
shell: bash
7070
run: |
71-
bundle config set --local path ./vendor/bundle
71+
bundle config set --local path ../vendor/bundle
7272
bundle install
7373
7474
- name: Save Bundler Install cache
7575
if: steps.cache-bundler-restore.outputs.cache-hit != 'true'
7676
id: cache-bundler-save
7777
uses: actions/cache/save@v4
7878
with:
79-
path: ./vendor/bundle
79+
path: ../vendor/bundle
8080
key: ${{ steps.cache-bundler-restore.outputs.cache-primary-key }}

0 commit comments

Comments
 (0)