mirror of
https://github.com/docker/login-action
synced 2024-11-10 08:01:41 +00:00
4b15841c41
* Create docker.test.ts * Add context tests * test main
17 lines
380 B
TypeScript
17 lines
380 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', {required: true}),
|
|
logout: core.getInput('logout')
|
|
};
|
|
}
|