mirror of
https://github.com/actions/download-artifact.git
synced 2025-08-21 16:10:17 +00:00
fix: Typo in false statement
This commit is contained in:
parent
70d5f75956
commit
59d282b60b
@ -10,10 +10,10 @@ async function run(): Promise<void> {
|
||||
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
|
||||
|
Loading…
x
Reference in New Issue
Block a user