diff --git a/packages/artifact/src/internal/upload/blob-upload.ts b/packages/artifact/src/internal/upload/blob-upload.ts index f98cab26..d6534571 100644 --- a/packages/artifact/src/internal/upload/blob-upload.ts +++ b/packages/artifact/src/internal/upload/blob-upload.ts @@ -53,7 +53,9 @@ export async function uploadZipToBlobStorage( core.info('Beginning upload of artifact content to blob storage') const isItReadable = zipUploadStream.readable - core.info(`Is the zipUploadStream readable? ${isItReadable}`) + core.info(`Is the zipUploadStream readable? ${isItReadable}`) // it is readable, that's good + const isItClosed = zipUploadStream.closed + core.info(`Is the zipUploadStream closed? ${isItClosed}`) // it is not closed, that's good try { await blockBlobClient.uploadStream( uploadStream,