mirror of
https://github.com/actions/upload-artifact.git
synced 2025-04-19 06:54:45 +02:00
13 lines
310 B
TypeScript
13 lines
310 B
TypeScript
import {NoFileOptions} from './constants'
|
|
|
|
export interface UploadInputs {
|
|
/**
|
|
* The search path used to describe what to upload as part of the artifact
|
|
*/
|
|
searchPath: string
|
|
|
|
/**
|
|
* The desired behavior if no files are found with the provided search path
|
|
*/
|
|
ifNoFilesFound: NoFileOptions
|
|
}
|