From e7e0ca8fa6cc52fc876c9cf7ea98d519ce1b44b7 Mon Sep 17 00:00:00 2001 From: Austin Sasko Date: Fri, 18 Mar 2022 18:08:29 -0400 Subject: [PATCH] Update index.js --- dist/index.js | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/dist/index.js b/dist/index.js index 5835afb..8057e3e 100644 --- a/dist/index.js +++ b/dist/index.js @@ -7066,14 +7066,15 @@ function run() { const path = core.getInput(constants_1.Inputs.Path, { required: false }); const extract = core.getInput(constants_1.Inputs.Extract, { required: false }); core.info(`constants inputs ${constants_1.Inputs}`); + core.info(`Extract name was ${constants_1.Inputs.Name}`); core.info(`Extract input was ${constants_1.Inputs.Extract}`); let extractArtifact; if (extract == "True") { - core.info("Extract was true"); + core.info("Extract was true ${extract}"); extractArtifact = true; } else { - core.info("Extract was false"); + core.info("Extract was false ${extract}"); extractArtifact = false; } let resolvedPath;