mirror of
				https://github.com/actions/upload-artifact.git
				synced 2025-10-23 08:56:38 +08:00 
			
		
		
		
	* V2 Upload Artifact * Improve logs * Update release * Update test.yml * Update test.yml * Update test.yml * @actions/artifact v0.2.0 package * Add extra YAML test
		
			
				
	
	
		
			13 lines
		
	
	
		
			365 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			365 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
| name: 'Upload a Build Artifact'
 | |
| description: 'Upload a build artifact that can be used by subsequent workflow steps'
 | |
| author: 'GitHub'
 | |
| inputs: 
 | |
|   name:
 | |
|     description: 'Artifact name'
 | |
|     required: false
 | |
|   path:
 | |
|     description: 'A file, directory or wildcard pattern that describes what to upload'
 | |
|     required: true
 | |
| runs:
 | |
|   using: 'node12'
 | |
|   main: 'dist/index.js' |