mirror of https://github.com/actions/toolkit
Adding more error handlrs
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…
Reference in New Issue