Skip to content

Commit 9cb1a7c

Browse files
authored
Update git-utils.ts
1 parent 62dcd84 commit 9cb1a7c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/git-utils.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ export async function copyAssets(
2121
const files = fs.readdirSync(publishDir);
2222
core.debug(`${files}`);
2323
for await (const file of files) {
24-
if (file.endsWith('.git') || file.endsWith('.github')) {
24+
if (file.endsWith('.git')) {
2525
continue;
2626
}
2727
const filePath = path.join(publishDir, file);

0 commit comments

Comments
 (0)