upload-artifact/src/upload-inputs.ts
2020-09-02 01:28:08 +03:00

14 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
}