diff --git a/src/git-utils.ts b/src/git-utils.ts index f09688c..1f4ff78 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;