1
0
Files
login-action/src/context.ts
T

18 lines
398 B
TypeScript
Raw Normal View History

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'),
2020-10-16 18:24:41 +02:00
username: core.getInput('username', {required: true}),
2020-08-20 16:40:33 +02:00
password: core.getInput('password', {required: true}),
logout: core.getInput('logout')
};
}