mirror of
				https://github.com/actions/download-artifact.git
				synced 2025-11-04 06:13:41 +00:00 
			
		
		
		
	* Various improvements to download-artifact * Resolve input path * README updates * PR feedback
		
			
				
	
	
		
			8 lines
		
	
	
		
			113 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			8 lines
		
	
	
		
			113 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
export enum Inputs {
 | 
						|
  Name = 'name',
 | 
						|
  Path = 'path'
 | 
						|
}
 | 
						|
export enum Outputs {
 | 
						|
  DownloadPath = 'download-path'
 | 
						|
}
 |