mirror of
https://gitea.com/actions/upload-artifact.git
synced 2025-09-20 10:38:32 +08:00
Merge 5c459179e7
into 83fd05a356
This commit is contained in:
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)}`);
|
||||
}
|
||||
|
Reference in New Issue
Block a user