Fix binary name in CI

This commit is contained in:
Fedor Indutny 2024-10-31 14:28:36 -07:00 committed by GitHub
parent a338bc5a67
commit f9b2261783
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -35,7 +35,7 @@ async function main(): Promise<void> {
platform = 'linux';
arch = 'x64';
} else if (config === 'windows') {
fileName = `${NAME}-win-${VERSION}.exe`;
fileName = `${NAME}-win-x64-${VERSION}.exe`;
platform = 'windows';
arch = 'x64';
} else if (config === 'macos-arm64') {