From fb54d6af4d2abbf7a42806620594b173c2f55882 Mon Sep 17 00:00:00 2001 From: peaceiris <30958501+peaceiris@users.noreply.github.com> Date: Thu, 6 Feb 2020 01:41:17 +0900 Subject: [PATCH] fix: add debug --- src/git-utils.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/git-utils.ts b/src/git-utils.ts index f09688c90..1f4ff78dc 100644 --- a/src/git-utils.ts +++ b/src/git-utils.ts @@ -25,6 +25,7 @@ export async function copyAssets( ): Promise { const copyOpts = {recursive: true, force: false}; const files = fs.readdirSync(publishDir); + core.debug(`${files}`); for await (const file of files) { if (file.endsWith('.git') || file.endsWith('.github')) { continue;