login-action/src/context.ts
CrazyMax 42711d156c
multiple registries support
Signed-off-by: CrazyMax <1951866+crazy-max@users.noreply.github.com>
2025-09-05 18:14:00 +02:00

22 lines
462 B
TypeScript

import * as core from '@actions/core';
export interface Inputs {
registry: string;
username: string;
password: string;
ecr: string;
logout: boolean;
add: string;
}
export function getInputs(): Inputs {
return {
registry: core.getInput('registry'),
username: core.getInput('username'),
password: core.getInput('password'),
ecr: core.getInput('ecr'),
logout: core.getBooleanInput('logout'),
add: core.getInput('add')
};
}