mirror of
https://github.com/oven-sh/setup-bun.git
synced 2025-04-04 02:30:10 +08:00
chore: build
This commit is contained in:
parent
ad6ee5950c
commit
b15fb7d098
2
dist/index.js
vendored
2
dist/index.js
vendored
@ -14,7 +14,7 @@ const main = async () => {
|
||||
const release = await getGithubRelease(version, token);
|
||||
if ((release === null || release === void 0 ? void 0 : release.message) === 'Not Found')
|
||||
return exit('Invalid bun version.');
|
||||
info(`Going to install release ${release.tag_name}`);
|
||||
info(`Going to install release ${release.version}`);
|
||||
await install(release);
|
||||
setOutput('bun-version', release.tag_name);
|
||||
}
|
||||
|
17
dist/utils/getAsset.js
vendored
17
dist/utils/getAsset.js
vendored
@ -10,19 +10,10 @@ export default (assets) => {
|
||||
default:
|
||||
throw new Error(`Unsupported architechture ${process.arch}.`);
|
||||
}
|
||||
let platform;
|
||||
switch (process.platform) {
|
||||
case 'linux':
|
||||
platform = 'linux';
|
||||
break;
|
||||
case 'darwin':
|
||||
platform = 'darwin';
|
||||
break;
|
||||
default:
|
||||
throw new Error(`Unsupported platform ${process.platform}.`);
|
||||
}
|
||||
if (!['linux', 'darwin'].some(platform => process.platform === platform))
|
||||
throw new Error(`Unsupported platform ${process.platform}.`);
|
||||
return {
|
||||
name: `bun-${platform}-${arch}.zip`,
|
||||
asset: assets.find(asset => asset.name === `bun-${platform}-${arch}.zip`),
|
||||
name: `bun-${process.platform}-${arch}.zip`,
|
||||
asset: assets.find(asset => asset.name === `bun-${process.platform}-${arch}.zip`),
|
||||
};
|
||||
};
|
||||
|
5
dist/utils/getGithubRelease.js
vendored
5
dist/utils/getGithubRelease.js
vendored
@ -12,5 +12,8 @@ export default async (version, token) => {
|
||||
'Authorization': token
|
||||
}
|
||||
})).json();
|
||||
return release;
|
||||
return {
|
||||
...release,
|
||||
version: release.tag_name.replace('bun-v', '')
|
||||
};
|
||||
};
|
||||
|
5
dist/utils/install.js
vendored
5
dist/utils/install.js
vendored
@ -4,7 +4,8 @@ import getAsset from './getAsset.js';
|
||||
import getHomeDir from './getHomeDir.js';
|
||||
import { join } from 'path';
|
||||
export default async (release) => {
|
||||
const cache = find('bun', release.tag_name);
|
||||
const cache = find('bun', release.version);
|
||||
console.log(cache);
|
||||
if (cache) {
|
||||
info(`Using cached Bun installation from ${cache}.`);
|
||||
addPath(cache);
|
||||
@ -14,7 +15,7 @@ export default async (release) => {
|
||||
info(`Downloading Bun from ${asset.asset.browser_download_url}.`);
|
||||
const zipPath = await downloadTool(asset.asset.browser_download_url);
|
||||
const extracted = await extractZip(zipPath, join(getHomeDir(), '.bun', 'bin'));
|
||||
const newCache = await cacheDir(extracted, 'bun', release.tag_name);
|
||||
const newCache = await cacheDir(extracted, 'bun', release.version);
|
||||
info(`Cached Bun to ${newCache}.`);
|
||||
addPath(newCache);
|
||||
const bunPath = join(getHomeDir(), '.bun', 'bin', asset.name.replace('.zip', ''));
|
||||
|
Loading…
x
Reference in New Issue
Block a user