mirror of
https://github.com/docker/login-action
synced 2024-11-10 08:01:41 +00:00
18 lines
395 B
TypeScript
18 lines
395 B
TypeScript
|
import * as core from '@actions/core';
|
||
|
|
||
|
export interface Inputs {
|
||
|
registry: string;
|
||
|
username: string;
|
||
|
password: string;
|
||
|
logout: string;
|
||
|
}
|
||
|
|
||
|
export async function getInputs(): Promise<Inputs> {
|
||
|
return {
|
||
|
registry: core.getInput('registry'),
|
||
|
username: core.getInput('username'),
|
||
|
password: core.getInput('password', {required: true}),
|
||
|
logout: core.getInput('logout')
|
||
|
};
|
||
|
}
|