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
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

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