From 48c0f561ffc7cea033373f7c478fe320bf5d0ec0 Mon Sep 17 00:00:00 2001 From: "trop[bot]" <37223003+trop[bot]@users.noreply.github.com> Date: Tue, 30 Sep 2025 18:36:20 +0200 Subject: [PATCH] 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 --- script/release/release.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/script/release/release.ts b/script/release/release.ts index 1438577fae8..6e64764e443 100755 --- a/script/release/release.ts +++ b/script/release/release.ts @@ -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' ];