mirror of
https://code.forgejo.org/forgejo/upload-artifact.git
synced 2024-11-12 12:22:38 +00:00
19 lines
398 B
TypeScript
19 lines
398 B
TypeScript
|
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
|
||
|
}
|