Merge pull request #6929 from Budibase/update-lockfiles-pro-release

Update server and worker lockfiles after pro release
This commit is contained in:
Rory Powell 2022-07-27 12:35:16 -04:00 committed by GitHub
commit d100c2a5a2
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