From 5f75ff48e2abd857ce8cce07b5b01653f15dc2b8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gunnar=20Andr=C3=A9=20Saxvik-Lilleaasen?= Date: Tue, 17 Sep 2024 09:34:38 +0200 Subject: [PATCH] Rebuild dist js. --- dist/save/index.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/dist/save/index.js b/dist/save/index.js index a26db52..f50bde9 100644 --- a/dist/save/index.js +++ b/dist/save/index.js @@ -88832,7 +88832,9 @@ async function run() { config.printInfo(cacheProvider); core.info(""); // TODO: remove this once https://github.com/actions/toolkit/pull/553 lands - await macOsWorkaround(); + if (process.env["RUNNER_OS"] == "macOS") { + await macOsWorkaround(); + } const allPackages = []; for (const workspace of config.workspaces) { const packages = await workspace.getPackagesOutsideWorkspaceRoot();