From 848165cf9f01c61b1f2e83d433177a9f46ce5ea7 Mon Sep 17 00:00:00 2001 From: peaceiris <30958501+peaceiris@users.noreply.github.com> Date: Thu, 6 Feb 2020 01:50:30 +0900 Subject: [PATCH] fix: copy force --- 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 1f4ff78dc..91de026fd 100644 --- a/src/git-utils.ts +++ b/src/git-utils.ts @@ -23,7 +23,7 @@ export async function copyAssets( publishDir: string, workDir: string ): Promise { - const copyOpts = {recursive: true, force: false}; + const copyOpts = {recursive: true, force: true}; const files = fs.readdirSync(publishDir); core.debug(`${files}`); for await (const file of files) {