mirror of https://github.com/actions/cache.git
Compare commits
2 Commits
674a46247b
...
73717d91a2
Author | SHA1 | Date |
---|---|---|
![]() |
73717d91a2 | |
![]() |
b8dd3ecee2 |
|
@ -244,15 +244,15 @@ steps:
|
|||
|
||||
## Haskell - Cabal
|
||||
|
||||
We cache the elements of the Cabal store separately, as the entirety of `~/.cabal` can grow very large for projects with many dependencies.
|
||||
We cache the elements of the Cabal store.
|
||||
|
||||
```yaml
|
||||
- name: Cache ~/.cabal/packages, ~/.cabal/store and dist-newstyle
|
||||
uses: actions/cache@v4
|
||||
with:
|
||||
path: |
|
||||
~/.cabal/packages
|
||||
~/.cabal/store
|
||||
~/.cache/cabal/packages
|
||||
~/.local/state/cabal
|
||||
dist-newstyle
|
||||
key: ${{ runner.os }}-${{ matrix.ghc }}-${{ hashFiles('**/*.cabal', '**/cabal.project', '**/cabal.project.freeze') }}
|
||||
restore-keys: ${{ runner.os }}-${{ matrix.ghc }}-
|
||||
|
|
Loading…
Reference in New Issue