From 59d282b60b8d7602aea510feffed89a4ba5f0146 Mon Sep 17 00:00:00 2001 From: Austin Sasko Date: Fri, 18 Mar 2022 14:13:44 -0400 Subject: [PATCH] fix: Typo in false statement --- src/download-artifact.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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