File tree 2 files changed +2
-8
lines changed
2 files changed +2
-8
lines changed Original file line number Diff line number Diff line change @@ -180546,9 +180546,8 @@ function main() {
180546
180546
.pop();
180547
180547
const depsPath = [external_path_.join(esyPrefix, esy3, "i")];
180548
180548
const buildKey = `build-${index_platform}-${arch}-${cacheKey}`;
180549
- const restoreKeys = [`build-${index_platform}-${arch}-`, `build-`];
180550
180549
core.startGroup("Restoring build cache");
180551
- const buildCacheKey = yield cache.restoreCache(depsPath, buildKey, restoreKeys );
180550
+ const buildCacheKey = yield cache.restoreCache(depsPath, buildKey, [] );
180552
180551
if (buildCacheKey) {
180553
180552
console.log("Restored the build cache");
180554
180553
}
Original file line number Diff line number Diff line change @@ -219,14 +219,9 @@ async function main() {
219
219
220
220
const depsPath = [ path . join ( esyPrefix , esy3 ! , "i" ) ] ;
221
221
const buildKey = `build-${ platform } -${ arch } -${ cacheKey } ` ;
222
- const restoreKeys = [ `build-${ platform } -${ arch } -` , `build-` ] ;
223
222
224
223
core . startGroup ( "Restoring build cache" ) ;
225
- const buildCacheKey = await cache . restoreCache (
226
- depsPath ,
227
- buildKey ,
228
- restoreKeys
229
- ) ;
224
+ const buildCacheKey = await cache . restoreCache ( depsPath , buildKey , [ ] ) ;
230
225
if ( buildCacheKey ) {
231
226
console . log ( "Restored the build cache" ) ;
232
227
}
You can’t perform that action at this time.
0 commit comments