2
0
mirror of https://gitea.com/docker/login-action.git synced 2025-02-24 20:50:41 +07:00
docker-login/src/context.ts

18 lines
380 B
TypeScript
Raw Normal View History

2020-08-20 21:40:33 +07: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 21:40:33 +07:00
return {
registry: core.getInput('registry'),
username: core.getInput('username'),
password: core.getInput('password', {required: true}),
logout: core.getInput('logout')
};
}