fix: Typo in false statement

This commit is contained in:
Austin Sasko 2022-03-18 14:13:44 -04:00 committed by GitHub
parent 70d5f75956
commit 59d282b60b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -10,10 +10,10 @@ async function run(): Promise<void> {
const path = core.getInput(Inputs.Path, {required: false}) const path = core.getInput(Inputs.Path, {required: false})
const extract = core.getInput(Inputs.Extract, {required: false}) const extract = core.getInput(Inputs.Extract, {required: false})
let extractArtifact let extractArtifact
if(extract == "True") { if(extract === "True") {
extractArtifact = true extractArtifact = true
} else { } else {
extractArtifact = fallse extractArtifact = false
} }
let resolvedPath let resolvedPath