diff --git a/src/fs-helper.ts b/src/fs-helper.ts index 6f21525..f9f7477 100644 --- a/src/fs-helper.ts +++ b/src/fs-helper.ts @@ -109,7 +109,7 @@ export function stageActionFiles(actionDir: string, targetDir: string) { } // Filter out hidden folers like .git and .github - return !basename.startsWith('.') + return basename === '.' || !basename.startsWith('.') } })