mirror of
https://github.com/Swatinem/rust-cache
synced 2025-04-11 07:03:37 +00:00
fix check-dist on ci
This commit is contained in:
parent
e89acd5884
commit
342be2ce54
3
dist/restore/index.js
vendored
3
dist/restore/index.js
vendored
|
@ -77314,6 +77314,9 @@ class CacheConfig {
|
|||
key += `-${job}`;
|
||||
}
|
||||
}
|
||||
// Add runner OS to the key to avoid cross-contamination of cache
|
||||
const runnerOS = external_os_default().type();
|
||||
key += `-${runnerOS}`;
|
||||
self.keyPrefix = key;
|
||||
// Construct environment portion of the key:
|
||||
// This consists of a hash that considers the rust version
|
||||
|
|
3
dist/save/index.js
vendored
3
dist/save/index.js
vendored
|
@ -77314,6 +77314,9 @@ class CacheConfig {
|
|||
key += `-${job}`;
|
||||
}
|
||||
}
|
||||
// Add runner OS to the key to avoid cross-contamination of cache
|
||||
const runnerOS = external_os_default().type();
|
||||
key += `-${runnerOS}`;
|
||||
self.keyPrefix = key;
|
||||
// Construct environment portion of the key:
|
||||
// This consists of a hash that considers the rust version
|
||||
|
|
Loading…
Reference in a new issue