mirror of
https://github.com/docker/login-action.git
synced 2026-01-22 16:18:57 +08:00
update dist
This commit is contained in:
parent
34677259a9
commit
d61c413af8
4 changed files with 903 additions and 44 deletions
|
|
@ -2,6 +2,7 @@ import * as core from '@actions/core';
|
|||
|
||||
export interface Inputs {
|
||||
registry: string;
|
||||
isECR: string;
|
||||
username: string;
|
||||
password: string;
|
||||
logout: string;
|
||||
|
|
@ -10,6 +11,7 @@ export interface Inputs {
|
|||
export function getInputs(): Inputs {
|
||||
return {
|
||||
registry: core.getInput('registry'),
|
||||
isECR: core.getInput('isECR'),
|
||||
username: core.getInput('username'),
|
||||
password: core.getInput('password'),
|
||||
logout: core.getInput('logout')
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue