mirror of
https://gitee.com/actions-mirror/docker-login-action
synced 2025-02-22 07:50:58 +08:00
20 lines
416 B
TypeScript
20 lines
416 B
TypeScript
import * as core from '@actions/core';
|
|
|
|
export interface Inputs {
|
|
registry: string;
|
|
username: string;
|
|
password: string;
|
|
ecr: string;
|
|
logout: boolean;
|
|
}
|
|
|
|
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')
|
|
};
|
|
}
|