fix: copy dotfiles (#521)

Close #520

Related to:

- pr: #512 
- #507 #509 
- #390
- #324
- #103
This commit is contained in:
Shohei Ueda
2020-10-15 11:49:39 +09:00
committed by GitHub
parent 66acd31e22
commit 95792e1c0f

View File

@@ -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);