File tree 1 file changed +16
-8
lines changed
1 file changed +16
-8
lines changed Original file line number Diff line number Diff line change @@ -70,10 +70,14 @@ jobs:
70
70
- name : Cache cabal store
71
71
uses : actions/cache@v4
72
72
with :
73
- path :
74
- - ~/.local
75
- - ~/.cache
76
- key : deps-linux-${{ env.ghc }}-${{ hashFiles('cabal.project.freeze') }}
73
+ path : ~/.local
74
+ key : state-linux-${{ env.ghc }}-${{ hashFiles('cabal.project.freeze') }}
75
+
76
+ - name : Cache cabal cache
77
+ uses : actions/cache@v4
78
+ with :
79
+ path : ~/.cache
80
+ key : cache-linux-${{ env.ghc }}-${{ hashFiles('cabal.project.freeze') }}
77
81
78
82
- name : Cache build artifacts
79
83
uses : actions/cache@v4
@@ -130,10 +134,14 @@ jobs:
130
134
- name : Cache cabal store
131
135
uses : actions/cache@v4
132
136
with :
133
- path :
134
- - ~/.local
135
- - ~/.cache
136
- key : deps-${{ matrix.os }}-${{ hashFiles('devbox.lock', 'cabal.project.freeze') }}
137
+ path : ~/.local
138
+ key : store-${{ matrix.os }}-${{ hashFiles('devbox.lock', 'cabal.project.freeze') }}
139
+
140
+ - name : Cache cabal cache
141
+ uses : actions/cache@v4
142
+ with :
143
+ path : ~/.cache
144
+ key : cache-${{ matrix.os }}-${{ hashFiles('devbox.lock', 'cabal.project.freeze') }}
137
145
138
146
- name : Cache build artifacts
139
147
uses : actions/cache@v4
You can’t perform that action at this time.
0 commit comments