From 9eeb9e01eda0234632e3dfd522bf15de4977ea04 Mon Sep 17 00:00:00 2001 From: Cody Kaup Date: Fri, 18 Oct 2024 10:01:28 -0500 Subject: [PATCH] Keep new version when pushing to action-next --- scripts/releaseNext.mjs | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/scripts/releaseNext.mjs b/scripts/releaseNext.mjs index 845276599..78b6b9329 100755 --- a/scripts/releaseNext.mjs +++ b/scripts/releaseNext.mjs @@ -30,10 +30,7 @@ async function build() { }, })`yarn build`; - console.info('๐Ÿงน Resetting changes to let `auto` do its thing'); - await $`git reset --hard`; - - console.info('โœ… Build with new version completed, ready for auto!'); + console.info('โœ… Build with new version completed, ready for push to action-next!'); } main();