Remove test on release-develop job (temporary) (#9711)

* Remove test on release-develop job (temporary)

* Remove test on release-develop job (temporary)

* Speed up pro release script by adding no verify flag to version update commits
This commit is contained in:
Rory Powell 2023-02-16 14:14:22 +00:00 committed by GitHub
parent 9878e87bf6
commit f4102d4c16
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 4 deletions

View File

@ -45,10 +45,9 @@ jobs:
- run: yarn
- run: yarn bootstrap
- run: yarn lint
- run: yarn build
- run: yarn build:sdk
- run: yarn test
# - run: yarn test
- name: Publish budibase packages to NPM
env:

View File

@ -53,7 +53,7 @@ yarn clean -y && yarn bootstrap
# Commit and push
git add packages/pro/yarn.lock
git commit -m "Update dependency versions to $VERSION"
git commit -m "Update dependency versions to $VERSION" -n
git push
#############################################
@ -91,5 +91,5 @@ 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 commit -m "Update pro version to $VERSION" -n
git push