mirror of
https://github.com/docker/login-action
synced 2024-11-22 13:11:40 +00:00
5df5104555
Signed-off-by: CrazyMax <crazy-max@users.noreply.github.com>
17 lines
362 B
TypeScript
17 lines
362 B
TypeScript
import * as core from '@actions/core';
|
|
|
|
export interface Inputs {
|
|
registry: string;
|
|
username: string;
|
|
password: string;
|
|
logout: string;
|
|
}
|
|
|
|
export function getInputs(): Inputs {
|
|
return {
|
|
registry: core.getInput('registry'),
|
|
username: core.getInput('username'),
|
|
password: core.getInput('password'),
|
|
logout: core.getInput('logout')
|
|
};
|
|
}
|