mirror of
https://github.com/actions/download-artifact.git
synced 2025-07-24 23:48:29 +02:00
Update index.js
This commit is contained in:
parent
b220951eb0
commit
13a2d46bea
1 changed files with 3 additions and 1 deletions
4
dist/index.js
vendored
4
dist/index.js
vendored
|
@ -7065,8 +7065,10 @@ function run() {
|
||||||
const name = core.getInput(constants_1.Inputs.Name, { required: false });
|
const name = core.getInput(constants_1.Inputs.Name, { required: false });
|
||||||
const path = core.getInput(constants_1.Inputs.Path, { required: false });
|
const path = core.getInput(constants_1.Inputs.Path, { required: false });
|
||||||
const extract = core.getInput(constants_1.Inputs.Extract, { 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;
|
let extractArtifact;
|
||||||
if (extract === "True") {
|
if (extract == "True") {
|
||||||
core.info("Extract was true");
|
core.info("Extract was true");
|
||||||
extractArtifact = true;
|
extractArtifact = true;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue