diff --git a/src/git-utils.ts b/src/git-utils.ts index 115035f63..6aa564a5e 100644 --- a/src/git-utils.ts +++ b/src/git-utils.ts @@ -51,7 +51,7 @@ export async function copyAssets( } core.info(`[INFO] copy ${publishDir} to ${destDir}`); - cp('-RfL', [`${publishDir}/*`], destDir); + cp('-RfL', [`${publishDir}/*`, `${publishDir}/.*`], destDir); await deleteExcludedAssets(destDir, excludeAssets);