diff --git a/src/utils.ts b/src/utils.ts index 6968ef0..5795a6d 100644 --- a/src/utils.ts +++ b/src/utils.ts @@ -133,6 +133,7 @@ export async function listObjects( recursive: true, }); for (let entry of list) { + core.debug(`list entry: ${JSON.stringify(entry)}`); let meta = await op.stat(entry.path()); if (meta.isFile()) { r.push(entry.path());