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

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
This commit is contained in:
Samuel Attard
2025-09-29 11:16:39 -07:00
committed by GitHub
parent d4a5fdc8fc
commit a95180e080

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'
];