4
0
mirror of https://github.com/docker/setup-qemu-action.git synced 2026-03-02 12:52:06 +08:00
This commit is contained in:
문성하
2025-02-02 22:00:30 +09:00
parent d34dc30226
commit b296ac5a13

View File

@@ -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();