mirror of
https://git.mirrors.martin98.com/https://github.com/actions/toolkit
synced 2025-08-22 13:09:27 +08:00
Add another catch to see if upload stream is failing
This commit is contained in:
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…
x
Reference in New Issue
Block a user