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