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

26 lines
706 B
TypeScript
Raw Normal View History

2020-08-20 16:40:33 +02:00
import * as core from '@actions/core';
export interface Inputs {
registry: string;
username: string;
password: string;
ecr: string;
logout: boolean;
http_codes_to_retry: string[];
max_attempts: number;
retry_timeout: number;
2020-08-20 16:40:33 +02:00
}
export function getInputs(): Inputs {
2020-08-20 16:40:33 +02:00
return {
registry: core.getInput('registry'),
username: core.getInput('username'),
password: core.getInput('password'),
ecr: core.getInput('ecr'),
logout: core.getBooleanInput('logout'),
http_codes_to_retry: core.getInput('http_codes_to_retry').split(','),
max_attempts: Number.parseInt(core.getInput('max_attempts')),
retry_timeout: Number.parseInt(core.getInput('retry_timeout'))
2020-08-20 16:40:33 +02:00
};
}