From 528c4707b7934780d3c05569db337760b643e276 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jozef=20Steinh=C3=BCbl?= Date: Mon, 29 Jul 2024 20:58:56 +0200 Subject: [PATCH] fix: getPlatform, getArchitecture + eversion --- src/action.ts | 12 ++++++------ src/utils.ts | 14 ++++++++++++++ 2 files changed, 20 insertions(+), 6 deletions(-) diff --git a/src/action.ts b/src/action.ts index 5ebd8cf..5b3fc3b 100644 --- a/src/action.ts +++ b/src/action.ts @@ -13,7 +13,7 @@ import { downloadTool, extractZip } from "@actions/tool-cache"; import { getExecOutput } from "@actions/exec"; import { writeBunfig } from "./bunfig"; import { saveState } from "@actions/core"; -import { addExtension, request } from "./utils"; +import { addExtension, getArchitecture, getPlatform, request } from "./utils"; import { compareVersions, satisfies, validate } from "compare-versions"; export type Input = { @@ -179,18 +179,18 @@ async function getDownloadUrl(options: Input): Promise { if (!tag) { tags = tags.filter((t) => validate(t)).sort(compareVersions); - if (version === "latest") tag = tags.at(-1); - else tag = tags.filter((t) => satisfies(t, version)).at(-1); + if (version === "latest") tag = `bun-v${tags.at(-1)}`; + else tag = `bun-${tags.filter((t) => satisfies(t, version)).at(-1)}`; } const eversion = encodeURIComponent(tag ?? version); - const eos = encodeURIComponent(os ?? process.platform); - const earch = encodeURIComponent(arch ?? process.arch); + const eos = encodeURIComponent(os ?? getPlatform()); + const earch = encodeURIComponent(arch ?? getArchitecture()); const eavx2 = encodeURIComponent(avx2 ? "-baseline" : ""); const eprofile = encodeURIComponent(profile ? "-profile" : ""); const { href } = new URL( - `bun-${eversion}/bun-${eos}-${earch}${eavx2}${eprofile}.zip`, + `${eversion}/bun-${eos}-${earch}${eavx2}${eprofile}.zip`, "https://github.com/oven-sh/bun/releases/download/" ); diff --git a/src/utils.ts b/src/utils.ts index ad2342e..3d68c4c 100644 --- a/src/utils.ts +++ b/src/utils.ts @@ -26,6 +26,20 @@ export function addExtension(path: string, ext: string): string { return path; } +export function getPlatform(): string { + const platform = process.platform; + if (platform === "win32") return "windows"; + + return platform; +} + +export function getArchitecture(): string { + const arch = process.arch; + if (arch === "arm64") return "aarch64"; + + return arch; +} + const FILE_VERSION_READERS = { "package.json": (content: string) => JSON.parse(content).packageManager?.split("bun@")?.[1],