2020-08-20 14:40:33 +00:00
|
|
|
import * as core from '@actions/core';
|
|
|
|
|
|
|
|
export interface Inputs {
|
|
|
|
registry: string;
|
|
|
|
username: string;
|
|
|
|
password: string;
|
|
|
|
logout: string;
|
|
|
|
}
|
|
|
|
|
2020-10-09 10:30:45 +00:00
|
|
|
export function getInputs(): Inputs {
|
2020-08-20 14:40:33 +00:00
|
|
|
return {
|
|
|
|
registry: core.getInput('registry'),
|
2020-10-16 16:24:41 +00:00
|
|
|
username: core.getInput('username', {required: true}),
|
2020-08-20 14:40:33 +00:00
|
|
|
password: core.getInput('password', {required: true}),
|
|
|
|
logout: core.getInput('logout')
|
|
|
|
};
|
|
|
|
}
|