1
0
Fork 0
mirror of https://github.com/docker/login-action.git synced 2025-04-04 14:10:05 +02:00
login-action/src/context.ts

20 lines
414 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;
2020-12-30 10:53:16 -08:00
isECR: string;
2020-08-20 16:40:33 +02:00
username: string;
password: string;
logout: string;
}
export function getInputs(): Inputs {
2020-08-20 16:40:33 +02:00
return {
registry: core.getInput('registry'),
2020-12-30 10:53:16 -08:00
isECR: core.getInput('isECR'),
username: core.getInput('username'),
password: core.getInput('password'),
2020-08-20 16:40:33 +02:00
logout: core.getInput('logout')
};
}