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 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
|
||||||
|
Loading…
x
Reference in New Issue
Block a user