mirror of
https://github.com/actions/download-artifact.git
synced 2025-07-24 23:48:29 +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 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…
Add table
Add a link
Reference in a new issue