From 1e9c9b416b34adee6413a53a1d1eb903cf2ee157 Mon Sep 17 00:00:00 2001 From: Daniel Beal <50845286+dbeal-wiser@users.noreply.github.com> Date: Wed, 30 Dec 2020 10:46:08 -0800 Subject: [PATCH] Update docker.ts --- src/docker.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 {