From 13a2d46bea62f700fcb4055f223d3c0c57a21afc Mon Sep 17 00:00:00 2001 From: Austin Sasko Date: Fri, 18 Mar 2022 18:01:39 -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 76d42ba..5835afb 100644 --- a/dist/index.js +++ b/dist/index.js @@ -7065,8 +7065,10 @@ function run() { const name = core.getInput(constants_1.Inputs.Name, { required: false }); 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 input was ${constants_1.Inputs.Extract}`); let extractArtifact; - if (extract === "True") { + if (extract == "True") { core.info("Extract was true"); extractArtifact = true; }