1
0
Files
upload-artifact/src/upload-inputs.ts
T

24 lines
490 B
TypeScript
Raw Normal View History

import {NoFileOptions} from './constants'
export interface UploadInputs {
/**
* The name of the artifact that will be uploaded
*/
artifactName: string
/**
* 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
2020-08-27 13:39:36 -04:00
/**
* Duration after which artifact will expire in days
*/
retentionDays: number
}