From 1661e94c5b65c6bc555fc7845760457e922c77e1 Mon Sep 17 00:00:00 2001 From: marky ercillo Date: Wed, 10 Jul 2024 09:43:44 -0700 Subject: [PATCH] debugging git working directly not clean --- scripts/release.sh | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/scripts/release.sh b/scripts/release.sh index 4d69cf4..cd61bb2 100755 --- a/scripts/release.sh +++ b/scripts/release.sh @@ -7,12 +7,15 @@ if [ ! -z "$VERSION" ]; then ## Update Changelog auto changelog + echo $VERSION + ## Publish Package - pnpm version $VERSION -m "Bump version to: %s [skip ci]" + npm version $VERSION -m "Bump version to: %s [skip ci]" ## publish to npm ## npm publish + ## Create GitHub Release - git push --follow-tags --set-upstream origin $branch + ## git push --follow-tags --set-upstream origin $branch auto release fi \ No newline at end of file