mirror of
https://git.mirrors.martin98.com/https://github.com/actions/toolkit
synced 2025-08-22 03:29:06 +08:00
Adding more error handlrs
This commit is contained in:
parent
17c4cab8b2
commit
b6c87ceea7
@ -60,6 +60,14 @@ export async function uploadZipToBlobStorage(
|
||||
core.info(`is the upload stream readable? ${uploadStream.readable}`)
|
||||
core.info(`is the upload stream writable? ${uploadStream.writable}`)
|
||||
core.info(`are we exceeding the max concurrency? ${maxConcurrency}`)
|
||||
|
||||
zipUploadStream.on('error', error => {
|
||||
core.info(`Error in zipUploadStream: ${error}`)
|
||||
})
|
||||
|
||||
uploadStream.on('error', error => {
|
||||
core.info(`Error in uploadStream:', ${error}`)
|
||||
})
|
||||
try {
|
||||
core.info(
|
||||
'1 Even more beginning upload of artifact content to blob storage'
|
||||
|
Loading…
x
Reference in New Issue
Block a user