mirror of
				https://git.mirrors.martin98.com/https://github.com/actions/upload-artifact
				synced 2025-10-31 21:11:11 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			29 lines
		
	
	
		
			609 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			29 lines
		
	
	
		
			609 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
 | |
| 
 | |
|   /**
 | |
|    * Duration after which artifact will expire in days
 | |
|    */
 | |
|   retentionDays: number
 | |
| 
 | |
|   /**
 | |
|    * The level of compression for Zlib to be applied to the artifact archive.
 | |
|    */
 | |
|   compressionLevel?: number
 | |
| }
 | 
