blob: 7623e177951dd8e18f1fb08b958a399b72c0f104 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
#!/bin/sh
ARG_DEFS=(
# require the git dryrun flag so the script can't be run without
# thinking about this!
"--git-push-dryrun=(true|false)"
)
function findLatestRelease {
# returns e.g. v1.2.7
LATEST_TAG=$(git describe --abbrev=0 --tags)
# returns e.g. 1.2.7
echo ${LATEST_TAG:1}
}
function init {
NG_ARGS=("$@")
if [[ ! $VERBOSE ]]; then
VERBOSE=false
fi
VERBOSE_ARG="--verbose=$VERBOSE"
}
function phase {
ACTION_ARG="--action=$1"
CDN_VERSION_ARG="--cdn-version=$LATEST_VERSION"
./scripts/angular.js/publish-cdn-version.sh $ACTION_ARG $CDN_VERSION_ARG $VERBOSE_ARG
./scripts/angularjs.org/publish.sh $ACTION_ARG $CDN_VERSION_ARG $VERBOSE_ARG
}
function run {
cd ../..
LATEST_VERSION=$(findLatestRelease)
phase prepare
phase publish
}
source $(dirname $0)/../utils.inc
|