chore: build

This commit is contained in:
xHyroM 2022-07-12 08:40:58 +02:00
parent ad6ee5950c
commit b15fb7d098
4 changed files with 12 additions and 17 deletions

2
dist/index.js vendored
View File

@ -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);
}

View File

@ -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`),
};
};

View File

@ -12,5 +12,8 @@ export default async (version, token) => {
'Authorization': token
}
})).json();
return release;
return {
...release,
version: release.tag_name.replace('bun-v', '')
};
};

View File

@ -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', ''));