From 9480a7c17082ddcb7c62f69ea89561aae6fcea9b Mon Sep 17 00:00:00 2001 From: Mario Minardi Date: Thu, 11 Dec 2025 10:56:57 -0700 Subject: [PATCH] dist: run make build to generated updated index.js Running make build was missed on #235 and subsequently missed by me when reviewing that PR (whoops). Updates #cleanup Signed-off-by: Mario Minardi --- dist/index.js | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/dist/index.js b/dist/index.js index 58140a2..0ea96fe 100644 --- a/dist/index.js +++ b/dist/index.js @@ -41353,6 +41353,14 @@ function getTailscaleArch(runnerOS) { return "amd64"; } } + else if (runnerOS === runnerMacOS) { + switch (runnerArch) { + case "ARM64": + return "arm64"; + default: + return "amd64"; + } + } return "amd64"; } async function installTailscale(config, runnerOS) {