We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dcfdc9c commit 4e9d72cCopy full SHA for 4e9d72c
.github/workflows/cache.yml
@@ -108,6 +108,18 @@ jobs:
108
${{ env.cache-name }}-${{ runner.os }}-${{ matrix.ghc }}-
109
${{ env.cache-name }}-${{ runner.os }}-
110
111
+ - name: dist-newstyle cache
112
+ uses: actions/cache@v2
113
+ env:
114
+ cache-name: dist-newstyle
115
+ with:
116
+ path: ${{ steps.HaskEnvSetup.outputs.cabal-store }}
117
+ key: ${{ env.cache-name }}-${{ runner.os }}-${{ matrix.ghc }}-${{ env.HACKAGE_TIMESTAMP }}-${{ hashFiles('cabal.project') }}
118
+ restore-keys: |
119
+ ${{ env.cache-name }}-${{ runner.os }}-${{ matrix.ghc }}-${{ env.HACKAGE_TIMESTAMP }}-
120
+ ${{ env.cache-name }}-${{ runner.os }}-${{ matrix.ghc }}-
121
+ ${{ env.cache-name }}-${{ runner.os }}-
122
+
123
- name: Download all sources
124
run: |
125
cabal v2-build all --only-download
0 commit comments