mirror of
https://github.com/Swatinem/rust-cache
synced 2025-04-05 21:24:07 +00:00
only pre-clean when something was restored
This commit is contained in:
parent
292ef23e77
commit
9de90d2338
10
dist/restore/index.js
vendored
10
dist/restore/index.js
vendored
|
@ -54800,15 +54800,15 @@ async function run() {
|
||||||
if (restoreKey) {
|
if (restoreKey) {
|
||||||
core.info(`Restored from cache key "${restoreKey}".`);
|
core.info(`Restored from cache key "${restoreKey}".`);
|
||||||
core.saveState(stateKey, restoreKey);
|
core.saveState(stateKey, restoreKey);
|
||||||
|
if (restoreKey !== key) {
|
||||||
|
// pre-clean the target directory on cache mismatch
|
||||||
|
const packages = await getPackages();
|
||||||
|
await cleanTarget(packages);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
core.info("No cache found.");
|
core.info("No cache found.");
|
||||||
}
|
}
|
||||||
if (restoreKey !== key) {
|
|
||||||
// pre-clean the target directory on cache mismatch
|
|
||||||
const packages = await getPackages();
|
|
||||||
await cleanTarget(packages);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
catch (e) {
|
catch (e) {
|
||||||
core.info(`[warning] ${e.message}`);
|
core.info(`[warning] ${e.message}`);
|
||||||
|
|
|
@ -20,16 +20,16 @@ async function run() {
|
||||||
if (restoreKey) {
|
if (restoreKey) {
|
||||||
core.info(`Restored from cache key "${restoreKey}".`);
|
core.info(`Restored from cache key "${restoreKey}".`);
|
||||||
core.saveState(stateKey, restoreKey);
|
core.saveState(stateKey, restoreKey);
|
||||||
|
|
||||||
|
if (restoreKey !== key) {
|
||||||
|
// pre-clean the target directory on cache mismatch
|
||||||
|
const packages = await getPackages();
|
||||||
|
|
||||||
|
await cleanTarget(packages);
|
||||||
|
}
|
||||||
} else {
|
} else {
|
||||||
core.info("No cache found.");
|
core.info("No cache found.");
|
||||||
}
|
}
|
||||||
|
|
||||||
if (restoreKey !== key) {
|
|
||||||
// pre-clean the target directory on cache mismatch
|
|
||||||
const packages = await getPackages();
|
|
||||||
|
|
||||||
await cleanTarget(packages);
|
|
||||||
}
|
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
core.info(`[warning] ${e.message}`);
|
core.info(`[warning] ${e.message}`);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue