mirror of
https://github.com/docker/login-action.git
synced 2025-03-31 12:10:05 +02:00
update dist
This commit is contained in:
parent
34677259a9
commit
d61c413af8
4 changed files with 903 additions and 44 deletions
|
@ -11,7 +11,7 @@ inputs:
|
|||
description: 'Server address of Docker registry. If not set then will default to Docker Hub'
|
||||
required: false
|
||||
isECR:
|
||||
description: 'Specifies whethre the given registry is ECR. Uses regex by default to detect automatically'
|
||||
description: 'Specifies whether the given registry is ECR, either `true` or `false`. Uses regex by default to detect automatically'
|
||||
required: false
|
||||
username:
|
||||
description: 'Username used to log against the Docker registry'
|
||||
|
|
939
dist/index.js
generated
vendored
939
dist/index.js
generated
vendored
File diff suppressed because it is too large
Load diff
|
@ -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')
|
||||
|
|
|
@ -2,8 +2,8 @@ import * as core from '@actions/core';
|
|||
import * as aws from './aws';
|
||||
import * as execm from './exec';
|
||||
|
||||
export async function login(registry: string, username: string, password: string, isECR?: boolean): Promise<void> {
|
||||
if (isECR == true || (isECR == undefined && await aws.isECR(registry))) {
|
||||
export async function login(registry: string, username: string, password: string, isECR: string): Promise<void> {
|
||||
if (isECR == 'true' || (!isECR && await aws.isECR(registry))) {
|
||||
await loginECR(registry, username, password);
|
||||
} else {
|
||||
await loginStandard(registry, username, password);
|
||||
|
|
Loading…
Add table
Reference in a new issue