From 079e10bfd687360aac1e39d47af33032b673623c Mon Sep 17 00:00:00 2001 From: xHyroM Date: Thu, 28 Jul 2022 07:54:35 +0200 Subject: [PATCH] fix(getGithubRelease): missing .zip --- dist/utils/getGithubRelease.js | 2 +- src/utils/getGithubRelease.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/dist/utils/getGithubRelease.js b/dist/utils/getGithubRelease.js index faa6939..b030ad6 100644 --- a/dist/utils/getGithubRelease.js +++ b/dist/utils/getGithubRelease.js @@ -17,7 +17,7 @@ export default async (version, token, fullRepository, customDownloadUrl, miscTes tag_name: 'custom', assets: [ { - name: `bun-${process.platform}-${getArchitecture()}`, + name: `bun-${process.platform}-${getArchitecture()}.zip`, browser_download_url: customDownloadUrl } ] diff --git a/src/utils/getGithubRelease.ts b/src/utils/getGithubRelease.ts index c83daba..f8af0d6 100644 --- a/src/utils/getGithubRelease.ts +++ b/src/utils/getGithubRelease.ts @@ -31,7 +31,7 @@ export default async(version: string, token: string, fullRepository: string, cus tag_name: 'custom', assets: [ { - name: `bun-${process.platform}-${getArchitecture()}`, + name: `bun-${process.platform}-${getArchitecture()}.zip`, browser_download_url: customDownloadUrl } ]