From 89f682545635f40dd765a9027e5438b33619eee2 Mon Sep 17 00:00:00 2001 From: xHyroM Date: Thu, 28 Jul 2022 07:59:44 +0200 Subject: [PATCH] fix: add token to install --- dist/index.js | 2 +- dist/utils/install.js | 4 ++-- src/index.ts | 2 +- src/utils/getGithubRelease.ts | 1 + src/utils/install.ts | 4 ++-- 5 files changed, 7 insertions(+), 6 deletions(-) diff --git a/dist/index.js b/dist/index.js index 5d1ead8..e366e02 100644 --- a/dist/index.js +++ b/dist/index.js @@ -23,7 +23,7 @@ const main = async () => { if ((release === null || release === void 0 ? void 0 : release.message) === 'Not Found') return exit('Invalid bun version.', miscTestBuilds); info(`Going to install release ${release.version}`); - await install(release); + await install(release, token); setOutput('bun-version', release.tag_name); } catch (e) { diff --git a/dist/utils/install.js b/dist/utils/install.js index 101f775..00d8618 100644 --- a/dist/utils/install.js +++ b/dist/utils/install.js @@ -4,7 +4,7 @@ import { addPath, info } from '@actions/core'; import getAsset from './getAsset.js'; import { join } from 'path'; import { homedir } from 'os'; -export default async (release) => { +export default async (release, token) => { const asset = getAsset(release.assets); const path = join(homedir(), '.bun', 'bin', asset.name); const cache = find('bun', release.version) || await restoreCache([path], `bun-${process.platform}-${asset.name}-${release.version}`); @@ -14,7 +14,7 @@ export default async (release) => { return; } info(`Downloading Bun from ${asset.asset.browser_download_url}.`); - const zipPath = await downloadTool(asset.asset.browser_download_url); + const zipPath = await downloadTool(asset.asset.browser_download_url, `token ${token}`); const extracted = await extractZip(zipPath, join(homedir(), '.bun', 'bin')); const newCache = await cacheDir(extracted, 'bun', release.version); await saveCache([ diff --git a/src/index.ts b/src/index.ts index f0c1940..4707ff8 100644 --- a/src/index.ts +++ b/src/index.ts @@ -26,7 +26,7 @@ const main = async() => { info(`Going to install release ${release.version}`); - await install(release); + await install(release, token); setOutput('bun-version', release.tag_name); } catch(e) { diff --git a/src/utils/getGithubRelease.ts b/src/utils/getGithubRelease.ts index f8af0d6..5aa3c02 100644 --- a/src/utils/getGithubRelease.ts +++ b/src/utils/getGithubRelease.ts @@ -37,6 +37,7 @@ export default async(version: string, token: string, fullRepository: string, cus ] }; } + const release: any = await (await fetch(url, { headers: { 'Content-Type': 'application/json', diff --git a/src/utils/install.ts b/src/utils/install.ts index 54f29ab..fbf1963 100644 --- a/src/utils/install.ts +++ b/src/utils/install.ts @@ -6,7 +6,7 @@ import getAsset from './getAsset.js'; import { join } from 'path'; import { homedir } from 'os'; -export default async(release: Release) => { +export default async(release: Release, token: string) => { const asset = getAsset(release.assets); const path = join(homedir(), '.bun', 'bin', asset.name); const cache = find('bun', release.version) || await restoreCache([path], `bun-${process.platform}-${asset.name}-${release.version}`); @@ -18,7 +18,7 @@ export default async(release: Release) => { info(`Downloading Bun from ${asset.asset.browser_download_url}.`); - const zipPath = await downloadTool(asset.asset.browser_download_url); + const zipPath = await downloadTool(asset.asset.browser_download_url, `token ${token}`); const extracted = await extractZip(zipPath, join(homedir(), '.bun', 'bin')); const newCache = await cacheDir(