From b296ac5a13883bc733b4bb862ffc97362fef04b4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EB=AC=B8=EC=84=B1=ED=95=98?= Date: Sun, 2 Feb 2025 22:00:30 +0900 Subject: [PATCH] test --- src/main.ts | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/main.ts b/src/main.ts index 37818c8..6f10c8c 100644 --- a/src/main.ts +++ b/src/main.ts @@ -15,6 +15,11 @@ actionsToolkit.run( async () => { const input: context.Inputs = context.getInputs(); + // 디버깅을 위한 로그 추가 + core.info(`Local cache path: "${input.localCachePath}"`); + core.info(`Local cache path type: ${typeof input.localCachePath}`); + core.info(`Is empty string: ${input.localCachePath === ''}`); + await core.group(`Docker info`, async () => { await Docker.printVersion(); await Docker.printInfo();