1
0
Fork 0

adding more debugging statements

pull/1700/head
Vallie Joseph 2024-03-28 21:17:54 +00:00
parent a2852cee6f
commit c14e304555
1 changed files with 4 additions and 0 deletions

View File

@ -42,9 +42,11 @@ export async function createZipUploadStream(
zip.on('finish', zipFinishCallback)
zip.on('end', zipEndCallback)
core.debug(`Number of files to upload: ${uploadSpecification.length}`)
for (const file of uploadSpecification) {
await new Promise((resolve, reject) => {
if (file.sourcePath !== null) {
core.debug(`Creating file entry: ${file.sourcePath}`)
// Add a normal file to the zip
zip.entry(
createReadStream(file.sourcePath),
@ -56,6 +58,7 @@ export async function createZipUploadStream(
)
} else {
// add directory to zip
core.debug(`Creating directory entry: ${file.destinationPath}`)
zip.entry(
null,
{name: `${file.destinationPath}/`},
@ -69,6 +72,7 @@ export async function createZipUploadStream(
}
zip.finalize()
core.debug(`Finalizing entries`)
const bufferSize = getUploadChunkSize()
const zipUploadStream = new ZipUploadStream(bufferSize)
zip.pipe(zipUploadStream) // Pipe the zip stream into zipUploadStream