mirror of
https://github.com/docker/login-action.git
synced 2024-11-06 00:45:48 -05:00
b9a4d91ee5
Signed-off-by: CrazyMax <crazy-max@users.noreply.github.com>
19 lines
416 B
TypeScript
19 lines
416 B
TypeScript
import * as core from '@actions/core';
|
|
|
|
export interface Inputs {
|
|
registry: string;
|
|
username: string;
|
|
password: string;
|
|
ecr: string;
|
|
logout: boolean;
|
|
}
|
|
|
|
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')
|
|
};
|
|
}
|