mirror of
https://github.com/docker/login-action.git
synced 2025-09-10 20:57:50 +08:00
22 lines
462 B
TypeScript
22 lines
462 B
TypeScript
import * as core from '@actions/core';
|
|
|
|
export interface Inputs {
|
|
registry: string;
|
|
username: string;
|
|
password: string;
|
|
ecr: string;
|
|
logout: boolean;
|
|
add: string;
|
|
}
|
|
|
|
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'),
|
|
add: core.getInput('add')
|
|
};
|
|
}
|