ci: try fixing cabal store path on windows

This commit is contained in:
Tom McLaughlin 2024-07-25 20:29:43 -07:00
parent 1cd5b6acc1
commit d31aef6b9d

View File

@ -61,7 +61,7 @@ jobs:
- uses: actions/cache/restore@v4
id: cache-restore
with:
path: ~/.cabal
path: ${{ steps.setup-haskell-cabal.outputs.cabal-store }}
key: ${{ runner.os }}-${{ matrix.ghc }}-${{ hashFiles('cabal.project.freeze') }}
- name: Install dependencies (macOS)
@ -108,7 +108,7 @@ jobs:
- uses: actions/cache/save@v4
if: always() && steps.cache-restore.outputs.cache-hit != 'true'
with:
path: ~/.cabal
path: ${{ steps.setup-haskell-cabal.outputs.cabal-store }}
key: ${{ runner.os }}-${{ matrix.ghc }}-${{ hashFiles('cabal.project.freeze') }}
stack: