mirror of
https://github.com/redhat-actions/podman-login.git
synced 2025-06-08 02:29:03 +00:00
Add example workflow
Signed-off-by: divyansh42 <diagrawa@redhat.com>
This commit is contained in:
parent
565d575198
commit
1b6468c894
10 changed files with 68 additions and 196 deletions
|
@ -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),
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue