1
0
Fork 0
mirror of synced 2024-07-01 04:21:06 +12:00

Merge pull request #5532 from Budibase/pro-build-fixes

Pro build fixes
This commit is contained in:
Rory Powell 2022-04-22 10:23:08 +01:00 committed by GitHub
commit 714193abc3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 9 additions and 3 deletions

View file

@ -70,8 +70,8 @@
"@apidevtools/swagger-parser": "^10.0.3",
"@budibase/backend-core": "^1.0.105-alpha.28",
"@budibase/client": "^1.0.105-alpha.28",
"@budibase/pro": "1.0.105-alpha.25",
"@budibase/string-templates": "^1.0.105-alpha.28",
"@budibase/pro": "^1.0.0",
"@bull-board/api": "^3.7.0",
"@bull-board/koa": "^3.7.0",
"@elastic/elasticsearch": "7.10.0",

View file

@ -32,8 +32,8 @@
"license": "GPL-3.0",
"dependencies": {
"@budibase/backend-core": "^1.0.105-alpha.28",
"@budibase/pro": "1.0.105-alpha.25",
"@budibase/string-templates": "^1.0.105-alpha.28",
"@budibase/pro": "^1.0.0",
"@koa/router": "^8.0.0",
"@sentry/node": "6.17.7",
"@techpass/passport-openidconnect": "^0.3.0",

View file

@ -1,3 +1,5 @@
#!/bin/bash
if [[ -z "${CI}" ]]; then
echo 'Cannot run insall.sh unless in CI'
exit 0

View file

@ -1,3 +1,5 @@
#!/bin/bash
if [[ -z "${CI}" ]]; then
echo 'Cannot run release.sh unless in CI'
exit 0
@ -5,6 +7,9 @@ fi
# Release pro as same version as budibase
VERSION=$(jq -r .version lerna.json)
echo "Version: $VERSION"
COMMAND=$1
echo "Command: $COMMAND"
# Go to pro package
cd ../budibase-pro
@ -13,7 +18,6 @@ cd ../budibase-pro
echo //registry.npmjs.org/:_authToken=${NPM_TOKEN} >> .npmrc
# Determine tag to use
COMMAND=$1
TAG=""
if [[ $COMMAND == "develop" ]]
then