mirror of
https://github.com/oven-sh/setup-bun.git
synced 2025-04-05 11:36:10 +08:00
fix: add token to install
This commit is contained in:
parent
079e10bfd6
commit
89f6825456
2
dist/index.js
vendored
2
dist/index.js
vendored
@ -23,7 +23,7 @@ const main = async () => {
|
|||||||
if ((release === null || release === void 0 ? void 0 : release.message) === 'Not Found')
|
if ((release === null || release === void 0 ? void 0 : release.message) === 'Not Found')
|
||||||
return exit('Invalid bun version.', miscTestBuilds);
|
return exit('Invalid bun version.', miscTestBuilds);
|
||||||
info(`Going to install release ${release.version}`);
|
info(`Going to install release ${release.version}`);
|
||||||
await install(release);
|
await install(release, token);
|
||||||
setOutput('bun-version', release.tag_name);
|
setOutput('bun-version', release.tag_name);
|
||||||
}
|
}
|
||||||
catch (e) {
|
catch (e) {
|
||||||
|
4
dist/utils/install.js
vendored
4
dist/utils/install.js
vendored
@ -4,7 +4,7 @@ import { addPath, info } from '@actions/core';
|
|||||||
import getAsset from './getAsset.js';
|
import getAsset from './getAsset.js';
|
||||||
import { join } from 'path';
|
import { join } from 'path';
|
||||||
import { homedir } from 'os';
|
import { homedir } from 'os';
|
||||||
export default async (release) => {
|
export default async (release, token) => {
|
||||||
const asset = getAsset(release.assets);
|
const asset = getAsset(release.assets);
|
||||||
const path = join(homedir(), '.bun', 'bin', asset.name);
|
const path = join(homedir(), '.bun', 'bin', asset.name);
|
||||||
const cache = find('bun', release.version) || await restoreCache([path], `bun-${process.platform}-${asset.name}-${release.version}`);
|
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;
|
return;
|
||||||
}
|
}
|
||||||
info(`Downloading Bun from ${asset.asset.browser_download_url}.`);
|
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 extracted = await extractZip(zipPath, join(homedir(), '.bun', 'bin'));
|
||||||
const newCache = await cacheDir(extracted, 'bun', release.version);
|
const newCache = await cacheDir(extracted, 'bun', release.version);
|
||||||
await saveCache([
|
await saveCache([
|
||||||
|
@ -26,7 +26,7 @@ const main = async() => {
|
|||||||
|
|
||||||
info(`Going to install release ${release.version}`);
|
info(`Going to install release ${release.version}`);
|
||||||
|
|
||||||
await install(release);
|
await install(release, token);
|
||||||
|
|
||||||
setOutput('bun-version', release.tag_name);
|
setOutput('bun-version', release.tag_name);
|
||||||
} catch(e) {
|
} catch(e) {
|
||||||
|
@ -37,6 +37,7 @@ export default async(version: string, token: string, fullRepository: string, cus
|
|||||||
]
|
]
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
const release: any = await (await fetch(url, {
|
const release: any = await (await fetch(url, {
|
||||||
headers: {
|
headers: {
|
||||||
'Content-Type': 'application/json',
|
'Content-Type': 'application/json',
|
||||||
|
@ -6,7 +6,7 @@ import getAsset from './getAsset.js';
|
|||||||
import { join } from 'path';
|
import { join } from 'path';
|
||||||
import { homedir } from 'os';
|
import { homedir } from 'os';
|
||||||
|
|
||||||
export default async(release: Release) => {
|
export default async(release: Release, token: string) => {
|
||||||
const asset = getAsset(release.assets);
|
const asset = getAsset(release.assets);
|
||||||
const path = join(homedir(), '.bun', 'bin', asset.name);
|
const path = join(homedir(), '.bun', 'bin', asset.name);
|
||||||
const cache = find('bun', release.version) || await restoreCache([path], `bun-${process.platform}-${asset.name}-${release.version}`);
|
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}.`);
|
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 extracted = await extractZip(zipPath, join(homedir(), '.bun', 'bin'));
|
||||||
|
|
||||||
const newCache = await cacheDir(
|
const newCache = await cacheDir(
|
||||||
|
Loading…
x
Reference in New Issue
Block a user