From 5ba5042af3be8ba4f66c367550a4d6782be68712 Mon Sep 17 00:00:00 2001 From: Jens Reimann Date: Wed, 15 Feb 2023 09:06:05 +0100 Subject: [PATCH] style: fix lint errors --- src/index.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/index.ts b/src/index.ts index d43e067..9804ebf 100644 --- a/src/index.ts +++ b/src/index.ts @@ -75,8 +75,7 @@ async function run(): Promise { if (process.env.XDG_RUNTIME_DIR) { authFileDir = process.env.XDG_RUNTIME_DIR; } - podmanAuthFilePath = path.join(authFileDir, - "containers", "auth.json"); + podmanAuthFilePath = path.join(authFileDir, "containers", "auth.json"); } const REGISTRY_AUTH_ENVVAR = "REGISTRY_AUTH_FILE"; core.info(`Exporting ${REGISTRY_AUTH_ENVVAR}=${podmanAuthFilePath}`);