3
0
Fork 0
mirror of https://github.com/Swatinem/rust-cache synced 2025-04-28 22:25:54 +00:00

Update dist directory

This commit is contained in:
Jeroen Bransen 2024-12-18 10:48:48 +01:00 committed by Alexander van Saase
parent 2c11e3358f
commit 3abbfe0f3f

6
dist/save/index.js vendored
View file

@ -87340,9 +87340,14 @@ async function run() {
if (process.env["RUNNER_OS"] == "macOS") {
await macOsWorkaround();
}
const crates = core.getInput("cache-all-crates").toLowerCase() || "false";
const allPackages = [];
for (const workspace of config.workspaces) {
const packages = await workspace.getPackagesOutsideWorkspaceRoot();
if (crates === "true") {
const wsMembers = await workspace.getWorkspaceMembers();
packages.push(...wsMembers);
}
allPackages.push(...packages);
try {
core.info(`... Cleaning ${workspace.target} ...`);
@ -87353,7 +87358,6 @@ async function run() {
}
}
try {
const crates = core.getInput("cache-all-crates").toLowerCase() || "false";
core.info(`... Cleaning cargo registry (cache-all-crates: ${crates}) ...`);
await cleanRegistry(allPackages, crates !== "true");
}