mirror of
				https://github.com/actions/upload-artifact.git
				synced 2025-10-23 08:56:38 +08:00 
			
		
		
		
	Check for invalid retention-days input
This commit is contained in:
		| @@ -31,6 +31,9 @@ export function getInputs(): UploadInputs { | ||||
|   const retentionDaysStr = core.getInput(Inputs.RetentionDays) | ||||
|   if (retentionDaysStr) { | ||||
|     inputs.retentionDays = parseInt(retentionDaysStr) | ||||
|     if (isNaN(inputs.retentionDays)) { | ||||
|       core.setFailed('Invalid retention-days') | ||||
|     } | ||||
|   } | ||||
|  | ||||
|   return inputs | ||||
|   | ||||
		Reference in New Issue
	
	Block a user