From 2c18fadb2dba71eaabc07169a85ab1dd01ed284e Mon Sep 17 00:00:00 2001 From: himself65 Date: Mon, 8 May 2023 18:31:05 -0500 Subject: [PATCH] build: commit after the set version --- scripts/set-version.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/scripts/set-version.sh b/scripts/set-version.sh index bf421bb821..fc433fab06 100755 --- a/scripts/set-version.sh +++ b/scripts/set-version.sh @@ -6,3 +6,5 @@ for DIR in $(yarn workspaces list --json | jq -r '.location'); do jq ".version = \"$1\"" "$DIR"/package.json > tmp.json && mv tmp.json "$DIR"/package.json fi done + +git add . && git commit -m "v$1"