4fd5d8ead6
Signed-off-by: CrazyMax <crazy-max@users.noreply.github.com>
18 lines
370 B
TypeScript
18 lines
370 B
TypeScript
import * as core from '@actions/core';
|
|
|
|
export interface Inputs {
|
|
registry: string;
|
|
username: string;
|
|
password: string;
|
|
logout: boolean;
|
|
}
|
|
|
|
export function getInputs(): Inputs {
|
|
return {
|
|
registry: core.getInput('registry'),
|
|
username: core.getInput('username'),
|
|
password: core.getInput('password'),
|
|
logout: core.getBooleanInput('logout')
|
|
};
|
|
}
|