Skip to content

Commit

Permalink
Update git-utils.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
pawsong committed Mar 17, 2020
1 parent 62dcd84 commit 9cb1a7c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/git-utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ export async function copyAssets(
const files = fs.readdirSync(publishDir);
core.debug(`${files}`);
for await (const file of files) {
if (file.endsWith('.git') || file.endsWith('.github')) {
if (file.endsWith('.git')) {
continue;
}
const filePath = path.join(publishDir, file);
Expand Down

0 comments on commit 9cb1a7c

Please sign in to comment.