mirror of
https://github.com/docker/login-action.git
synced 2024-11-18 01:55:40 +01: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')
|
|
};
|
|
}
|