diff --git a/src/docker.ts b/src/docker.ts index 19aeb63..079093b 100644 --- a/src/docker.ts +++ b/src/docker.ts @@ -2,7 +2,7 @@ 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): Promise { +export async function login(registry: string, username: string, password: string, isECR?: boolean): Promise { if (await aws.isECR(registry)) { await loginECR(registry, username, password); } else {