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 <mario@tailscale.com>
This commit is contained in:
Mario Minardi 2025-12-11 10:56:57 -07:00 committed by Mario Minardi
parent fee37da258
commit 67f81e554b

8
dist/index.js generated vendored
View file

@ -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) {