We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0e31732 commit a9ee9b5Copy full SHA for a9ee9b5
.github/workflows/build.yml
@@ -115,6 +115,9 @@ jobs:
115
116
runs-on: ${{ matrix.os }}
117
118
+ env:
119
+ CABAL_DIR: ~/.cabal
120
+
121
steps:
122
- uses: actions/checkout@v4
123
@@ -137,15 +140,9 @@ jobs:
137
140
- name: Cache cabal cache
138
141
uses: actions/cache@v4
139
142
with:
- path: ~/.cache
143
+ path: ~/.cabal
144
key: cache-${{ matrix.os }}-${{ hashFiles('devbox.lock', 'cabal.project.freeze') }}
145
- - name: Cache cabal state
- uses: actions/cache@v4
- with:
146
- path: ~/.local
147
- key: state-${{ matrix.os }}-${{ hashFiles('devbox.lock', 'cabal.project.freeze') }}
148
-
149
- name: Cache build artifacts
150
151
0 commit comments