Merge pull request #358 from gaerfield/patch-1

fixes actions/cache#244
This commit is contained in:
Aiqiao Yan 2020-07-16 15:48:28 -04:00 committed by GitHub
commit 4978dc4f31
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

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