fix: add debug

This commit is contained in:
peaceiris 2020-02-06 01:41:17 +09:00
parent 6edc4c9764
commit fb54d6af4d

View File

@ -25,6 +25,7 @@ export async function copyAssets(
): Promise<void> {
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;