From b220951eb07acf7a86ce4b591bb786ffd55dfab3 Mon Sep 17 00:00:00 2001 From: Austin Sasko Date: Fri, 18 Mar 2022 17:54:22 -0400 Subject: [PATCH] Update index.js --- dist/index.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/dist/index.js b/dist/index.js index 02ff818..76d42ba 100644 --- a/dist/index.js +++ b/dist/index.js @@ -4239,11 +4239,11 @@ Note: The size of downloaded zips can differ significantly from the reported siz let downloadedArtifacts = 0; while (downloadedArtifacts < artifacts.count) { const currentArtifactToDownload = artifacts.value[downloadedArtifacts]; - core.info(`current artifact is ${currentArtifactToDownload}`) downloadedArtifacts += 1; core.info(`starting download of artifact ${currentArtifactToDownload.name} : ${downloadedArtifacts}/${artifacts.count}`); // Get container entries for the specific artifact const items = yield downloadHttpClient.getContainerItems(currentArtifactToDownload.name, currentArtifactToDownload.fileContainerResourceUrl); + core.info(`Extract is ${extractArtifact}`); const downloadSpecification = download_specification_1.getDownloadSpecification(currentArtifactToDownload.name, items.value, path, true, extractArtifact); if (downloadSpecification.filesToDownload.length === 0) { core.info(`No downloadable files were found for any artifact ${currentArtifactToDownload.name}`); @@ -7067,9 +7067,11 @@ function run() { const extract = core.getInput(constants_1.Inputs.Extract, { required: false }); let extractArtifact; if (extract === "True") { + core.info("Extract was true"); extractArtifact = true; } else { + core.info("Extract was false"); extractArtifact = false; } let resolvedPath;