mirror of
https://github.com/oven-sh/setup-bun.git
synced 2025-07-18 04:28:28 +02:00
fix: path
This commit is contained in:
parent
ec51d40f3c
commit
8463dee038
2 changed files with 7 additions and 6 deletions
7
dist/utils/install.js
vendored
7
dist/utils/install.js
vendored
|
@ -1,6 +1,7 @@
|
|||
import { cacheDir, downloadTool, extractZip, find } from '@actions/tool-cache';
|
||||
import { addPath, info } from '@actions/core';
|
||||
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);
|
||||
|
@ -12,11 +13,11 @@ export default async (release) => {
|
|||
const asset = getAsset(release.assets);
|
||||
info(`Downloading Bun from ${asset.browser_download_url}.`);
|
||||
const zipPath = await downloadTool(asset.browser_download_url);
|
||||
const extracted = await extractZip(zipPath);
|
||||
const extracted = await extractZip(zipPath, join(getHomeDir(), ".bun", "bin"));
|
||||
const newCache = await cacheDir(extracted, 'bun', release.tag_name);
|
||||
info(`Cached Bun to ${newCache}.`);
|
||||
addPath(newCache);
|
||||
info(extracted);
|
||||
const bunPath = join(extracted);
|
||||
console.log(extracted);
|
||||
const bunPath = join(getHomeDir(), ".bun", "bin");
|
||||
addPath(bunPath);
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue