mirror of https://github.com/actions/toolkit
Add another catch to see if upload stream is failing
parent
c9e825e841
commit
0a0e70d1cd
|
@ -68,6 +68,9 @@ export async function uploadZipToBlobStorage(
|
||||||
)
|
)
|
||||||
await blockBlobClient
|
await blockBlobClient
|
||||||
.uploadStream(uploadStream, bufferSize, maxConcurrency, options)
|
.uploadStream(uploadStream, bufferSize, maxConcurrency, options)
|
||||||
|
.catch(error => {
|
||||||
|
core.info(`Upload stream error: ${error}`)
|
||||||
|
})
|
||||||
.then(response => {
|
.then(response => {
|
||||||
core.info(`Upload stream response: ${response}`)
|
core.info(`Upload stream response: ${response}`)
|
||||||
})
|
})
|
||||||
|
|
Loading…
Reference in New Issue