diff options
| author | Tobias Bosch | 2013-12-13 20:02:15 -0800 |
|---|---|---|
| committer | Tobias Bosch | 2013-12-13 21:49:05 -0800 |
| commit | 9a4c9e6487e0f51275a7820d0c162aceeadbf561 (patch) | |
| tree | efce73ed82268c92c4b3bfa03c9ed1c44d053b6b /scripts/jenkins/release.sh | |
| parent | 11fff8fa0d370e2f20284510ad0e52cdf3bcb2a3 (diff) | |
| download | angular.js-9a4c9e6487e0f51275a7820d0c162aceeadbf561.tar.bz2 | |
chore(build): correct and refactor release script
Diffstat (limited to 'scripts/jenkins/release.sh')
| -rwxr-xr-x | scripts/jenkins/release.sh | 40 |
1 files changed, 19 insertions, 21 deletions
diff --git a/scripts/jenkins/release.sh b/scripts/jenkins/release.sh index be75efd7..444f5bdd 100755 --- a/scripts/jenkins/release.sh +++ b/scripts/jenkins/release.sh @@ -1,40 +1,38 @@ #!/bin/bash -if [ -z "$1" ]; then - echo "Please specify the version bump type: patch|minor|major" - exit 1 +echo "#################################" +echo "#### Cut release ################" +echo "#################################" + +if [ "$1" != "patch" -a "$1" != "minor" -a "$1" != "major" ]; then + echo "Please specify the next version type: patch|minor|major" + exit 1 fi +BUMP_TYPE=$1 -set -e # fail if any command fails +# Enable tracing and exit on first failure +set -xe +# Normalize working dir to script dir cd `dirname $0`/../.. -BUMP_TYPE=$1 -# bump versions: remove "-snapshot" suffix -sed -i .tmp -e 's/"version": "\(.*\)-snapshot"/"version": "\1"/' package.json + +# Bump versions: remove "-snapshot" suffix +./scripts/jenkins/bump-remove-snapshot.sh # Build ./jenkins_build.sh -VERSION=`cat build/version.txt` - -# Commit and tag -git add package.json -git commit -m "chore(release): v$VERSION" -git tag -m "v$VERSION" v$VERSION -# bump versions: increment version number and add "-snapshot" -grunt bump:$BUMP_TYPE -NEXT_VERSION=$(node -e "console.log(require('./package.json').version)" | sed -e 's/\r//g') -sed -i .tmp -e 's/"version": "\(.*\)"/"version": "\1-snapshot"/' package.json -git add package.json -git commit -m "chore(release): start v$NEXT_VERSION" +# Bump versions: Increment version and add "-snapshot" +./scripts/jenkins/bump-increment.sh $BUMP_TYPE +echo "-- push to Github" # push to github -# TODO git push +git push # Update code.angularjs.org ./scripts/code.angularjs.org/publish.sh -# Push to bower +# Update bower ./scripts/bower/publish.sh |
