mirror of
https://github.com/docker/login-action.git
synced 2025-04-20 01:56:45 +00:00
ecr input to specify whether the given registry is ECR
Signed-off-by: CrazyMax <crazy-max@users.noreply.github.com>
This commit is contained in:
parent
b20b9f5e31
commit
b9a4d91ee5
8 changed files with 29 additions and 15 deletions
|
@ -5,10 +5,10 @@ import * as stateHelper from './state-helper';
|
|||
|
||||
export async function run(): Promise<void> {
|
||||
try {
|
||||
const {registry, username, password, logout} = context.getInputs();
|
||||
stateHelper.setRegistry(registry);
|
||||
stateHelper.setLogout(logout);
|
||||
await docker.login(registry, username, password);
|
||||
const input: context.Inputs = context.getInputs();
|
||||
stateHelper.setRegistry(input.registry);
|
||||
stateHelper.setLogout(input.logout);
|
||||
await docker.login(input.registry, input.username, input.password, input.ecr);
|
||||
} catch (error) {
|
||||
core.setFailed(error.message);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue