mirror of
				https://github.com/docker/login-action.git
				synced 2025-10-31 01:40:11 +08:00 
			
		
		
		
	chore: update dist
Signed-off-by: Markus Maga <markus@maga.se>
This commit is contained in:
		
							parent
							
								
									46ab6d5c3c
								
							
						
					
					
						commit
						f6476db6e9
					
				
							
								
								
									
										8
									
								
								dist/index.js
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										8
									
								
								dist/index.js
									
									
									
										generated
									
									
										vendored
									
									
								
							| @ -262,8 +262,12 @@ function loginECR(registry, username, password) { | |||||||
|         else { |         else { | ||||||
|             core.info(`AWS ECR detected with ${region} region`); |             core.info(`AWS ECR detected with ${region} region`); | ||||||
|         } |         } | ||||||
|         process.env.AWS_ACCESS_KEY_ID = username || process.env.AWS_ACCESS_KEY_ID; |         if (username) { | ||||||
|         process.env.AWS_SECRET_ACCESS_KEY = password || process.env.AWS_SECRET_ACCESS_KEY; |             process.env.AWS_ACCESS_KEY_ID = username; | ||||||
|  |         } | ||||||
|  |         if (password) { | ||||||
|  |             process.env.AWS_SECRET_ACCESS_KEY = password; | ||||||
|  |         } | ||||||
|         core.info(`Retrieving docker login command through AWS CLI ${cliVersion} (${cliPath})...`); |         core.info(`Retrieving docker login command through AWS CLI ${cliVersion} (${cliPath})...`); | ||||||
|         const loginCmds = yield aws.getDockerLoginCmds(cliVersion, registry, region, accountIDs); |         const loginCmds = yield aws.getDockerLoginCmds(cliVersion, registry, region, accountIDs); | ||||||
|         core.info(`Logging into ${registry}...`); |         core.info(`Logging into ${registry}...`); | ||||||
|  | |||||||
		Loading…
	
		Reference in New Issue
	
	Block a user
	 Markus Maga
						Markus Maga