Update index.js

This commit is contained in:
Austin Sasko 2022-03-18 18:01:39 -04:00 committed by GitHub
parent b220951eb0
commit 13a2d46bea
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

4
dist/index.js vendored
View file

@ -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;
}