Change supppress to ignore

This commit is contained in:
Konrad Pabjan 2020-07-29 18:35:44 +02:00
parent 0fd7594662
commit fef15139c9
5 changed files with 6 additions and 6 deletions

View file

@ -18,5 +18,5 @@ export enum NoFileOptions {
/**
* Do not output any warnings or errors, the action does not fail
*/
suppress = 'suppress'
ignore = 'ignore'
}

View file

@ -23,7 +23,7 @@ async function run(): Promise<void> {
)
break
}
case NoFileOptions.suppress: {
case NoFileOptions.ignore: {
core.info(
`No files were found with the provided path: ${inputs.searchPath}. No artifacts will be uploaded.`
)