Browse Source

Update docs.yml

Fix ruby cache invalidation
pull/2829/head
XhmikosR 5 years ago committed by GitHub
parent
commit
5af47e0398
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      .github/workflows/docs.yml

4
.github/workflows/docs.yml

@ -47,9 +47,9 @@ jobs:
uses: actions/cache@v2 uses: actions/cache@v2
with: with:
path: docs/vendor/bundle path: docs/vendor/bundle
key: ${{ runner.os }}-ruby-v${{ env.RUBY }}-${{ hashFiles('Gemfile') }}-${{ hashFiles('Gemfile.lock') }} key: ${{ runner.os }}-ruby-v${{ env.RUBY }}-${{ hashFiles('docs/Gemfile') }}-${{ hashFiles('docs/Gemfile.lock') }}
restore-keys: | restore-keys: |
${{ runner.os }}-ruby-v${{ env.RUBY }}-${{ hashFiles('Gemfile') }}-${{ hashFiles('Gemfile.lock') }} ${{ runner.os }}-ruby-v${{ env.RUBY }}-${{ hashFiles('docs/Gemfile') }}-${{ hashFiles('docs/Gemfile.lock') }}
${{ runner.os }}-ruby-v${{ env.RUBY }}- ${{ runner.os }}-ruby-v${{ env.RUBY }}-
- name: Set up Bundler - name: Set up Bundler

Loading…
Cancel
Save