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"