build: add missing copied tarball to cloudstore paths (#48415)

It's guarunteed that `iojs-*` and `node-*` were the same origin file (we azcopy them) but this was missing in logs and it annoyed me

Co-authored-by: trop[bot] <37223003+trop[bot]@users.noreply.github.com>
Co-authored-by: Samuel Attard <sam@electronjs.org>
This commit is contained in:
trop[bot] 2025-09-30 18:36:20 +02:00 committed by GitHub
commit 48c0f561ff
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -210,8 +210,10 @@ function assetsForVersion (version: string, validatingRelease: boolean) {
const cloudStoreFilePaths = (version: string) => [ const cloudStoreFilePaths = (version: string) => [
`iojs-${version}-headers.tar.gz`, `iojs-${version}-headers.tar.gz`,
`iojs-${version}.tar.gz`, `iojs-${version}.tar.gz`,
`node-${version}-headers.tar.gz`,
`node-${version}.tar.gz`, `node-${version}.tar.gz`,
'node.lib', 'node.lib',
'arm64/node.lib',
'x64/node.lib', 'x64/node.lib',
'win-x64/iojs.lib', 'win-x64/iojs.lib',
'win-x86/iojs.lib', 'win-x86/iojs.lib',
@ -219,7 +221,6 @@ const cloudStoreFilePaths = (version: string) => [
'win-x64/node.lib', 'win-x64/node.lib',
'win-x86/node.lib', 'win-x86/node.lib',
'win-arm64/node.lib', 'win-arm64/node.lib',
'arm64/node.lib',
'SHASUMS.txt', 'SHASUMS.txt',
'SHASUMS256.txt' 'SHASUMS256.txt'
]; ];