Add example workflow

Signed-off-by: divyansh42 <diagrawa@redhat.com>
This commit is contained in:
divyansh42 2021-03-30 22:45:50 +05:30
parent 565d575198
commit 1b6468c894
10 changed files with 68 additions and 196 deletions

View file

@ -5,6 +5,7 @@ export interface ActionInputs {
registry: string;
username: string;
password: string;
logout: string;
}
export function getInputs(): ActionInputs {
@ -12,5 +13,6 @@ export function getInputs(): ActionInputs {
registry: core.getInput(Inputs.REGISTRY),
username: core.getInput(Inputs.USERNAME),
password: core.getInput(Inputs.PASSWORD),
logout: core.getInput(Inputs.LOGOUT),
};
}