mirror of https://github.com/actions/toolkit
extra log line for debug
parent
7b01731091
commit
606ebdcf6d
|
@ -26,6 +26,10 @@ export async function createZipUploadStream(
|
||||||
uploadSpecification: UploadZipSpecification[],
|
uploadSpecification: UploadZipSpecification[],
|
||||||
compressionLevel: number = DEFAULT_COMPRESSION_LEVEL
|
compressionLevel: number = DEFAULT_COMPRESSION_LEVEL
|
||||||
): Promise<ZipUploadStream> {
|
): Promise<ZipUploadStream> {
|
||||||
|
core.debug(
|
||||||
|
`Creating Artifact archive with compressionLevel: ${compressionLevel}`
|
||||||
|
)
|
||||||
|
|
||||||
const zip = archiver.create('zip', {
|
const zip = archiver.create('zip', {
|
||||||
highWaterMark: getUploadChunkSize(),
|
highWaterMark: getUploadChunkSize(),
|
||||||
zlib: {level: compressionLevel}
|
zlib: {level: compressionLevel}
|
||||||
|
|
Loading…
Reference in New Issue