login-action/src/context.ts

20 lines
414 B
TypeScript
Raw Normal View History

2020-08-20 14:40:33 +00:00
import * as core from '@actions/core';
export interface Inputs {
registry: string;
2020-12-30 18:53:16 +00:00
isECR: string;
2020-08-20 14:40:33 +00:00
username: string;
password: string;
logout: string;
}
export function getInputs(): Inputs {
2020-08-20 14:40:33 +00:00
return {
registry: core.getInput('registry'),
2020-12-30 18:53:16 +00:00
isECR: core.getInput('isECR'),
username: core.getInput('username'),
password: core.getInput('password'),
2020-08-20 14:40:33 +00:00
logout: core.getInput('logout')
};
}