mirror of
https://github.com/oven-sh/setup-bun.git
synced 2025-07-18 12:38:24 +02:00
feat: add bun paths and url to output
Fixes https://github.com/oven-sh/setup-bun/issues/81
This commit is contained in:
parent
3458468e4c
commit
ac64dabe8a
3 changed files with 12 additions and 1 deletions
|
@ -30,6 +30,8 @@ export type Input = {
|
|||
export type Output = {
|
||||
version: string;
|
||||
revision: string;
|
||||
bunPath: string;
|
||||
url: string;
|
||||
cacheHit: boolean;
|
||||
};
|
||||
|
||||
|
@ -111,6 +113,8 @@ export default async (options: Input): Promise<Output> => {
|
|||
return {
|
||||
version,
|
||||
revision,
|
||||
bunPath,
|
||||
url,
|
||||
cacheHit,
|
||||
};
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue