diff --git a/src/download-artifact.ts b/src/download-artifact.ts index 019e4e8..82983cb 100644 --- a/src/download-artifact.ts +++ b/src/download-artifact.ts @@ -10,10 +10,10 @@ async function run(): Promise { const path = core.getInput(Inputs.Path, {required: false}) const extract = core.getInput(Inputs.Extract, {required: false}) let extractArtifact - if(extract == "True") { + if(extract === "True") { extractArtifact = true } else { - extractArtifact = fallse + extractArtifact = false } let resolvedPath