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
parent 81db417caa
commit 48c0f561ff

View File

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