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 {