From 95792e1c0fe9dfef8ebe7284d1af7ca787fde866 Mon Sep 17 00:00:00 2001 From: Shohei Ueda <30958501+peaceiris@users.noreply.github.com> Date: Thu, 15 Oct 2020 11:49:39 +0900 Subject: [PATCH] fix: copy dotfiles (#521) Close #520 Related to: - pr: #512 - #507 #509 - #390 - #324 - #103 --- src/git-utils.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/git-utils.ts b/src/git-utils.ts index 115035f..6aa564a 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);