From 950598902bcb82349c3aa04902c9b96fd2c8526f Mon Sep 17 00:00:00 2001 From: Daniel Kennedy Date: Tue, 24 Feb 2026 16:23:27 -0500 Subject: [PATCH] stream: switch the error details to error type --- packages/artifact/src/internal/upload/stream.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/artifact/src/internal/upload/stream.ts b/packages/artifact/src/internal/upload/stream.ts index f3b228b6..2501290a 100644 --- a/packages/artifact/src/internal/upload/stream.ts +++ b/packages/artifact/src/internal/upload/stream.ts @@ -41,7 +41,7 @@ export async function createRawFileUploadStream( fileStream.on('error', error => { core.error('An error has occurred while reading the file for upload') - core.info(String(error)) + core.error(String(error)) uploadStream.destroy( new Error('An error has occurred during file read for the artifact') )