fix(getGithubRelease): missing .zip

This commit is contained in:
xHyroM 2022-07-28 07:54:35 +02:00
parent 3532147424
commit 079e10bfd6
2 changed files with 2 additions and 2 deletions

View File

@ -17,7 +17,7 @@ export default async (version, token, fullRepository, customDownloadUrl, miscTes
tag_name: 'custom', tag_name: 'custom',
assets: [ assets: [
{ {
name: `bun-${process.platform}-${getArchitecture()}`, name: `bun-${process.platform}-${getArchitecture()}.zip`,
browser_download_url: customDownloadUrl browser_download_url: customDownloadUrl
} }
] ]

View File

@ -31,7 +31,7 @@ export default async(version: string, token: string, fullRepository: string, cus
tag_name: 'custom', tag_name: 'custom',
assets: [ assets: [
{ {
name: `bun-${process.platform}-${getArchitecture()}`, name: `bun-${process.platform}-${getArchitecture()}.zip`,
browser_download_url: customDownloadUrl browser_download_url: customDownloadUrl
} }
] ]