Merge pull request #1267 from crazy-max/fix-allow
iterate over allow input values and push each separately
This commit is contained in:
		
						commit
						70dd953427
					
				
							
								
								
									
										2
									
								
								dist/index.js
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										2
									
								
								dist/index.js
									
									
									
										generated
									
									
										vendored
									
									
								
							
										
											
												File diff suppressed because one or more lines are too long
											
										
									
								
							
							
								
								
									
										2
									
								
								dist/index.js.map
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										2
									
								
								dist/index.js.map
									
									
									
										generated
									
									
										vendored
									
									
								
							
										
											
												File diff suppressed because one or more lines are too long
											
										
									
								
							| @ -117,9 +117,9 @@ async function getBuildArgs(inputs: Inputs, context: string, toolkit: Toolkit): | |||||||
|   await Util.asyncForEach(inputs['add-hosts'], async addHost => { |   await Util.asyncForEach(inputs['add-hosts'], async addHost => { | ||||||
|     args.push('--add-host', addHost); |     args.push('--add-host', addHost); | ||||||
|   }); |   }); | ||||||
|   if (inputs.allow.length > 0) { |   await Util.asyncForEach(inputs.allow, async allow => { | ||||||
|     args.push('--allow', inputs.allow.join(',')); |     args.push('--allow', allow); | ||||||
|   } |   }); | ||||||
|   if (await toolkit.buildx.versionSatisfies('>=0.12.0')) { |   if (await toolkit.buildx.versionSatisfies('>=0.12.0')) { | ||||||
|     await Util.asyncForEach(inputs.annotations, async annotation => { |     await Util.asyncForEach(inputs.annotations, async annotation => { | ||||||
|       args.push('--annotation', annotation); |       args.push('--annotation', annotation); | ||||||
|  | |||||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user
	 CrazyMax
						CrazyMax