1
0
Fork 0
mirror of synced 2024-06-29 19:41:03 +12:00
budibase/scripts/versionCommit.sh

18 lines
364 B
Bash
Raw Normal View History

2023-04-22 01:11:21 +12:00
#!/bin/bash
if [ -z "$1" ]
then
2023-05-06 00:23:14 +12:00
echo "Error: version number is required. Usage: $0 [major|minor|patch|prerelease]"
2023-04-22 01:11:21 +12:00
exit 1
fi
# Bump the version in lerna.json
node scripts/bumpVersion.js $1
2023-04-22 03:45:36 +12:00
NEW_VERSION=$(node -p "require('./lerna.json').version")
2023-04-22 01:11:21 +12:00
git add lerna.json
git commit -m "Bump version to $NEW_VERSION"
git tag v$NEW_VERSION
git push
2023-04-22 03:45:36 +12:00
git push --tags