File tree Expand file tree Collapse file tree 1 file changed +9
-7
lines changed Expand file tree Collapse file tree 1 file changed +9
-7
lines changed Original file line number Diff line number Diff line change 27
27
id : restore-buildkit-cache
28
28
with :
29
29
path : |
30
- buildkit.tar.zst
30
+ buildkit.tar
31
31
key : buildkit-${{ runner.os }}-
32
32
restore-keys : |
33
33
buildkit-${{ runner.os }}-
37
37
id : restore-droot-cache
38
38
with :
39
39
path : |
40
- droot
40
+ droot.tar
41
41
key : droot-${{ runner.os }}-
42
42
restore-keys : |
43
43
droot-${{ runner.os }}-
@@ -46,12 +46,12 @@ jobs:
46
46
shell : pwsh
47
47
run : |
48
48
if ((Test-Path "buildkit.tar.zst")) {
49
- tar --zstd - xvf buildkit.tar.zst
49
+ tar -xvf buildkit.tar
50
50
Write-Host "✅ unpacked buildkit!"
51
51
}
52
52
53
53
if ((Test-Path "droot.tar.zst")) {
54
- tar --zstd - xvf droot.tar.zst
54
+ tar -xvf droot.tar
55
55
Write-Host "✅ unpacked daemons root!"
56
56
}
57
57
@@ -181,7 +181,9 @@ jobs:
181
181
- name : Pack cache
182
182
shell : pwsh
183
183
run : |
184
- tar --zstd -cvf droot.tar.zst droot
184
+ tar -cvf buildkit.tar buildkit
185
+ Write-Host "✅ packed buildkit!"
186
+ tar -cvf droot.tar droot
185
187
Write-Host "✅ packed daemons root!"
186
188
187
189
# - name: Build app image
@@ -198,13 +200,13 @@ jobs:
198
200
uses : actions/cache/save@v4
199
201
with :
200
202
path : |
201
- buildkit
203
+ buildkit.tar
202
204
key : buildkit-${{ runner.os }}-
203
205
204
206
- name : Save Daemon Cache
205
207
id : save-droot-cache
206
208
uses : actions/cache/save@v4
207
209
with :
208
210
path : |
209
- droot.tar.zst
211
+ droot.tar
210
212
key : droot-${{ runner.os }}-
You can’t perform that action at this time.
0 commit comments