From b06c9621b53a20f0c6f5f3a5d9a101c3c05ebbb9 Mon Sep 17 00:00:00 2001 From: Luke Walton Date: Tue, 27 Aug 2024 15:38:32 +0100 Subject: [PATCH] fix: Action should now only commit once, not twice (#39) Co-authored-by: github-actions --- dist/index.js | 1 - src/scripts/push.ts | 2 -- 2 files changed, 3 deletions(-) diff --git a/dist/index.js b/dist/index.js index 5b3b40c..e6db9bc 100644 --- a/dist/index.js +++ b/dist/index.js @@ -113864,7 +113864,6 @@ const push = async (coverageDirectory) => { } }; exports.push = push; -(0, exports.push)(".coverage"); /***/ }), diff --git a/src/scripts/push.ts b/src/scripts/push.ts index cf34f02..17bcd8c 100644 --- a/src/scripts/push.ts +++ b/src/scripts/push.ts @@ -55,5 +55,3 @@ export const push = async (coverageDirectory: string) => { } } }; - -push(".coverage");