mirror of
https://github.com/actions/download-artifact.git
synced 2025-07-26 00:18:30 +02:00
fix: Typo in false statement
This commit is contained in:
parent
70d5f75956
commit
59d282b60b
1 changed files with 2 additions and 2 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue