1
0
Fork 0
mirror of https://github.com/docker/login-action.git synced 2025-04-01 20:50:06 +02:00
login-action/src/context.ts
Fedor Dikarev 8479e9040e add retries for 502
Signed-off-by: Fedor Dikarev <fedor.dikarev@gmail.com>
2024-10-29 22:14:18 +01:00

21 lines
494 B
TypeScript

import * as core from '@actions/core';
export interface Inputs {
registry: string;
username: string;
password: string;
ecr: string;
logout: boolean;
attempts: number;
}
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'),
attempts: Number.parseInt(core.getInput('attempts'))
};
}