mirror of
https://gitcode.com/gh_mirrors/se/setup-uv.git
synced 2026-07-03 18:45:08 +00:00
committed by
GitHub
parent
0439606c8e
commit
4180991cd9
Vendored
+6
-1
@@ -32,7 +32,12 @@ export async function restoreCache(): Promise<void> {
|
||||
core.info(
|
||||
`Trying to restore uv cache from GitHub Actions cache with key: ${cacheKey}`,
|
||||
);
|
||||
const cachePaths = [cacheLocalPath];
|
||||
if (cacheLocalPath === undefined) {
|
||||
throw new Error(
|
||||
"cache-local-path is not set. Cannot restore cache without a valid cache path.",
|
||||
);
|
||||
}
|
||||
const cachePaths = [cacheLocalPath.path];
|
||||
if (cachePython) {
|
||||
cachePaths.push(pythonDir);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user