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

Merge pull request #706 from nomeata/patch-1

Improve Haskell example
This commit is contained in:
Vipul 2022-01-05 22:03:41 -08:00 committed by GitHub
commit 611465405c
Signed by: GitHub
GPG key ID: 4AEE18F83AFDEB23

View file

@ -168,7 +168,8 @@ We cache the elements of the Cabal store separately, as the entirety of `~/.caba
~/.cabal/packages
~/.cabal/store
dist-newstyle
key: ${{ runner.os }}-${{ matrix.ghc }}
key: ${{ runner.os }}-${{ matrix.ghc }}-${{ hashFiles('**/*.cabal', '**/cabal.project', '**/cabal.project.freeze') }}
restore-keys: ${{ runner.os }}-${{ matrix.ghc }}-
```
## Java - Gradle