1
0
Fork 0

Remove other debug statements

pull/1700/head
Vallie Joseph 2024-03-28 20:12:52 +00:00
parent 0f23ae1184
commit d02a834fe3
2 changed files with 1 additions and 2 deletions

View File

@ -67,6 +67,7 @@ export async function uploadArtifact(
'CreateArtifact: response from backend was not ok'
)
}
// Create the zipupload stream for use in blob upload
const zipUploadStream = await createZipUploadStream(
zipSpecification,
options?.compressionLevel

View File

@ -51,7 +51,6 @@ export async function createZipUploadStream(
createReadStream(file.sourcePath),
{name: file.destinationPath},
function (err, entry) {
core.info(`Entry is: ${entry}`)
if (err) reject(err)
else resolve(entry)
}
@ -62,7 +61,6 @@ export async function createZipUploadStream(
null,
{name: `${file.destinationPath}/`},
function (err, entry) {
core.info(`Entry is: ${entry}`)
if (err) reject(err)
else resolve(entry)
}