From cd7943cbfb6836bbe3f3d4807f9568afaebeef69 Mon Sep 17 00:00:00 2001 From: Tim Etchells Date: Wed, 7 Apr 2021 12:58:15 -0400 Subject: [PATCH] change output a little Signed-off-by: Tim Etchells --- src/index.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/index.ts b/src/index.ts index cc1179d..c0dd3f0 100644 --- a/src/index.ts +++ b/src/index.ts @@ -15,7 +15,7 @@ let podmanPath: string | undefined; async function getPodmanPath(): Promise { if (podmanPath == null) { podmanPath = await io.which("podman", true); - await execute(podmanPath, [ "version" ]); + await execute(podmanPath, [ "version" ], { group: true }); } return podmanPath; @@ -43,7 +43,7 @@ async function run(): Promise { ]; await execute(await getPodmanPath(), args); - core.info(`✅ Successfully logged in to ${registry}`); + core.info(`✅ Successfully logged in to ${registry} as ${username}`); } async function registryLogout(): Promise {