mirror of
https://github.com/actions/upload-artifact.git
synced 2025-06-29 04:14:15 +00:00
Merge 5c459179e7
into 83fd05a356
This commit is contained in:
commit
df38ce7333
2 changed files with 7 additions and 2 deletions
4
dist/index.js
vendored
4
dist/index.js
vendored
|
@ -7827,7 +7827,9 @@ function getInputs() {
|
|||
const name = core.getInput(constants_1.Inputs.Name);
|
||||
const path = core.getInput(constants_1.Inputs.Path, { required: true });
|
||||
const ifNoFilesFound = core.getInput(constants_1.Inputs.IfNoFilesFound);
|
||||
const noFileBehavior = constants_1.NoFileOptions[ifNoFilesFound];
|
||||
const noFileBehavior = !ifNoFilesFound || ifNoFilesFound === ''
|
||||
? constants_1.NoFileOptions.warn
|
||||
: constants_1.NoFileOptions[ifNoFilesFound];
|
||||
if (!noFileBehavior) {
|
||||
core.setFailed(`Unrecognized ${constants_1.Inputs.IfNoFilesFound} input. Provided: ${ifNoFilesFound}. Available options: ${Object.keys(constants_1.NoFileOptions)}`);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue