3
0
Fork 0
mirror of https://gitea.com/docker/login-action.git synced 2024-11-26 11:29:36 +01:00
docker-login/src/context.ts

18 lines
362 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;
}
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'),
2020-08-20 16:40:33 +02:00
logout: core.getInput('logout')
};
}