mirror of
				https://git.mirrors.martin98.com/https://github.com/actions/upload-artifact
				synced 2025-10-31 18:21:10 +08:00 
			
		
		
		
	Merge pull request #173 from yacaovsnc/main
Display a warning if user tries to upload over 10000 files
This commit is contained in:
		
						commit
						ea3d524381
					
				
							
								
								
									
										3
									
								
								dist/index.js
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										3
									
								
								dist/index.js
									
									
									
									
										vendored
									
									
								
							| @ -4078,6 +4078,9 @@ function run() { | |||||||
|                 const s = searchResult.filesToUpload.length === 1 ? '' : 's'; |                 const s = searchResult.filesToUpload.length === 1 ? '' : 's'; | ||||||
|                 core.info(`With the provided path, there will be ${searchResult.filesToUpload.length} file${s} uploaded`); |                 core.info(`With the provided path, there will be ${searchResult.filesToUpload.length} file${s} uploaded`); | ||||||
|                 core.debug(`Root artifact directory is ${searchResult.rootDirectory}`); |                 core.debug(`Root artifact directory is ${searchResult.rootDirectory}`); | ||||||
|  |                 if (searchResult.filesToUpload.length > 10000) { | ||||||
|  |                     core.warning(`There are over 10,000 files in this artifact, consider create an archive before upload to improve the upload performance.`); | ||||||
|  |                 } | ||||||
|                 const artifactClient = artifact_1.create(); |                 const artifactClient = artifact_1.create(); | ||||||
|                 const options = { |                 const options = { | ||||||
|                     continueOnError: false |                     continueOnError: false | ||||||
|  | |||||||
| @ -37,6 +37,12 @@ async function run(): Promise<void> { | |||||||
|       ) |       ) | ||||||
|       core.debug(`Root artifact directory is ${searchResult.rootDirectory}`) |       core.debug(`Root artifact directory is ${searchResult.rootDirectory}`) | ||||||
| 
 | 
 | ||||||
|  |       if (searchResult.filesToUpload.length > 10000) { | ||||||
|  |         core.warning( | ||||||
|  |           `There are over 10,000 files in this artifact, consider create an archive before upload to improve the upload performance.` | ||||||
|  |         ) | ||||||
|  |       } | ||||||
|  | 
 | ||||||
|       const artifactClient = create() |       const artifactClient = create() | ||||||
|       const options: UploadOptions = { |       const options: UploadOptions = { | ||||||
|         continueOnError: false |         continueOnError: false | ||||||
|  | |||||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user
	 Yang Cao
						Yang Cao