fixed bug with fsExtra.copySync (#55)

This commit is contained in:
Edwin Sirko
2024-01-29 16:44:15 -05:00
committed by GitHub
parent b6419ce067
commit 77fbf96c58
+1 -1
View File
@@ -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('.')
}
})