diff options
| author | Tobias Bosch | 2014-01-07 14:47:03 -0800 | 
|---|---|---|
| committer | Tobias Bosch | 2014-01-07 15:49:03 -0800 | 
| commit | e89150ca0f462c8673e03bc29bce0d2dd51c6e03 (patch) | |
| tree | 67a261157ea6dc0dc6c4c6b3728655c68cdc480b /scripts/angular-phonecat | |
| parent | 9693a426e3814c0c2d83802015ae6cd8cfec8e3e (diff) | |
| download | angular.js-e89150ca0f462c8673e03bc29bce0d2dd51c6e03.tar.bz2 | |
chore(build): Add angular-seed and angular-phonecat to the release
Diffstat (limited to 'scripts/angular-phonecat')
| -rwxr-xr-x | scripts/angular-phonecat/publish.sh | 54 | 
1 files changed, 54 insertions, 0 deletions
| diff --git a/scripts/angular-phonecat/publish.sh b/scripts/angular-phonecat/publish.sh new file mode 100755 index 00000000..f68bc6f4 --- /dev/null +++ b/scripts/angular-phonecat/publish.sh @@ -0,0 +1,54 @@ +#!/bin/bash + +# Script for updating angular-phonecat repo from current local build. + +echo "#################################" +echo "## Update angular-phonecat ###" +echo "#################################" + +ARG_DEFS=( +  "--action=(prepare|publish)" +  "[--no-test=(true|false)]" +) + +function init { +  TMP_DIR=$(resolveDir ../../tmp) +  BUILD_DIR=$(resolveDir ../../build) +  REPO_DIR=$TMP_DIR/angular-phonecat +  NEW_VERSION=$(cat $BUILD_DIR/version.txt) +} + +function prepare { +  echo "-- Cloning angular-phonecat" +  git clone git@github.com:angular/angular-phonecat.git $REPO_DIR + +  # +  # copy the files from the build +  # +  echo "-- Updating angular-phonecat" +  cd $REPO_DIR +  ./scripts/private/update-angular.sh $BUILD_DIR + +  # Test +  if [[ $NO_TEST != "true" ]]; then +    ./scripts/private/test-all.sh +  fi + +  # Generate demo +  ./scripts/private/snapshot-web.sh +  git checkout gh-pages +  git pull +  rm -r step* +  mv angular-phonecat-snapshots-web/step* . +  git add step* +  git commit -am "Angular $NEW_VERSION release" +} + +function publish { +  cd $REPO_DIR +  echo "-- Pushing angular-phonecat" +  git push origin master -f --tags +  git push origin gh-pages -f +} + +source $(dirname $0)/../utils.inc | 
