mirror of
https://github.com/actions/download-artifact.git
synced 2024-11-22 21:55:29 +00:00
Update download-artifact.ts
This commit is contained in:
parent
b8fe923df2
commit
8371d5fae1
@ -21,6 +21,7 @@ async function run(): Promise<void> {
|
|||||||
path: core.getInput(Inputs.Path, {required: false}),
|
path: core.getInput(Inputs.Path, {required: false}),
|
||||||
token: core.getInput(Inputs.GitHubToken, {required: false}),
|
token: core.getInput(Inputs.GitHubToken, {required: false}),
|
||||||
repository: core.getInput(Inputs.Repository, {required: false}),
|
repository: core.getInput(Inputs.Repository, {required: false}),
|
||||||
|
maxAttempts: core.getInput(constants_1.Inputs.MaxAttempts, { required: false }),
|
||||||
runID: parseInt(core.getInput(Inputs.RunID, {required: false})),
|
runID: parseInt(core.getInput(Inputs.RunID, {required: false})),
|
||||||
pattern: core.getInput(Inputs.Pattern, {required: false}),
|
pattern: core.getInput(Inputs.Pattern, {required: false}),
|
||||||
mergeMultiple: core.getBooleanInput(Inputs.MergeMultiple, {required: false})
|
mergeMultiple: core.getBooleanInput(Inputs.MergeMultiple, {required: false})
|
||||||
@ -55,6 +56,14 @@ async function run(): Promise<void> {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (inputs.maxAttempts) {
|
||||||
|
core.info(`Max attempts for retrying download: ${inputs.maxAttempts}`);
|
||||||
|
options.findBy["maxAttempts"] = inputs.maxAttempts;
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
throw new Error(`Invalid retryCount: '${inputs.maxAttempts}'. Must be greater than 0`);
|
||||||
|
}
|
||||||
|
|
||||||
let artifacts: Artifact[] = []
|
let artifacts: Artifact[] = []
|
||||||
|
|
||||||
if (isSingleArtifactDownload) {
|
if (isSingleArtifactDownload) {
|
||||||
|
Loading…
Reference in New Issue
Block a user