Update server and worker lockfiles after pro release

This commit is contained in:
Rory Powell 2022-07-27 12:28:22 -04:00
parent 094acf1c4a
commit b268161168
1 changed files with 5 additions and 0 deletions

View File

@ -88,8 +88,13 @@ jq '.dependencies."@budibase/pro"="'$VERSION'"' package.json > package.json.tmp
# Go back to budibase repo root
cd -
# Update lockfile with new pro version
yarn bootstrap
# Commit and push changes
git add packages/server/package.json
git add packages/server/yarn.lock
git add packages/worker/package.json
git add packages/worker/yarn.lock
git commit -m "Update pro version to $VERSION"
git push