1
0
Fork 0
mirror of https://github.com/actions/cache.git synced 2024-09-19 09:26:43 +00:00

Improved gradle cache key calculation example

This commit is contained in:
Odín del Río 2021-01-13 22:09:00 +01:00 committed by GitHub
parent 26c48dce83
commit e64ab303d1
Signed by: GitHub
GPG key ID: 4AEE18F83AFDEB23

View file

@ -140,7 +140,7 @@ We cache the elements of the Cabal store separately, as the entirety of `~/.caba
path: |
~/.gradle/caches
~/.gradle/wrapper
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*') }}
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*', '**/gradle-wrapper.properties') }}
restore-keys: |
${{ runner.os }}-gradle-
```