parent
1ee574c51e
commit
1817ddb57b
|
@ -155,3 +155,6 @@ For subsequent snapshots, just run
|
||||||
``` shell
|
``` shell
|
||||||
$ ./scripts/publish/publish-build-artifacts.sh [github username]
|
$ ./scripts/publish/publish-build-artifacts.sh [github username]
|
||||||
```
|
```
|
||||||
|
|
||||||
|
The script will publish the build snapshot to a branch with the same name as your current branch,
|
||||||
|
and create it if it doesn't exist.
|
||||||
|
|
|
@ -23,17 +23,20 @@ function publishRepo {
|
||||||
cd $REPO_DIR && \
|
cd $REPO_DIR && \
|
||||||
git init && \
|
git init && \
|
||||||
git remote add origin $REPO_URL && \
|
git remote add origin $REPO_URL && \
|
||||||
git fetch origin master --depth=1 && \
|
# use the remote branch if it exists
|
||||||
git checkout origin/master && \
|
if git ls-remote --exit-code origin ${BRANCH}; then
|
||||||
git checkout -b master
|
git fetch origin ${BRANCH} --depth=1 && \
|
||||||
|
git checkout origin/${BRANCH}
|
||||||
|
fi
|
||||||
|
git checkout -b "${BRANCH}"
|
||||||
)
|
)
|
||||||
|
|
||||||
# copy over build artifacts into the repo directory
|
# copy over build artifacts into the repo directory
|
||||||
rm -rf $REPO_DIR/*
|
rm -rf $REPO_DIR/*
|
||||||
cp -R $ARTIFACTS_DIR/* $REPO_DIR/
|
cp -R $ARTIFACTS_DIR/* $REPO_DIR/
|
||||||
|
|
||||||
# Replace $$ANGULAR_VESION$$ with the build version.
|
# Replace $$ANGULAR_VERSION$$ with the build version.
|
||||||
BUILD_VER="2.0.0-${SHORT_SHA}"
|
BUILD_VER="${LATEST_TAG}+${SHORT_SHA}"
|
||||||
if [[ ${TRAVIS} ]]; then
|
if [[ ${TRAVIS} ]]; then
|
||||||
find $REPO_DIR/ -type f -name package.json -print0 | xargs -0 sed -i "s/\\\$\\\$ANGULAR_VERSION\\\$\\\$/${BUILD_VER}/g"
|
find $REPO_DIR/ -type f -name package.json -print0 | xargs -0 sed -i "s/\\\$\\\$ANGULAR_VERSION\\\$\\\$/${BUILD_VER}/g"
|
||||||
|
|
||||||
|
@ -59,7 +62,7 @@ function publishRepo {
|
||||||
git add --all && \
|
git add --all && \
|
||||||
git commit -m "${COMMIT_MSG}" && \
|
git commit -m "${COMMIT_MSG}" && \
|
||||||
git tag "${BUILD_VER}" && \
|
git tag "${BUILD_VER}" && \
|
||||||
git push origin master --tags --force
|
git push origin "${BRANCH}" --tags --force
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -85,6 +88,7 @@ function publishPackages {
|
||||||
COMMIT_MSG=`git log --oneline | head -n1`
|
COMMIT_MSG=`git log --oneline | head -n1`
|
||||||
COMMITTER_USER_NAME=`git --no-pager show -s --format='%cN' HEAD`
|
COMMITTER_USER_NAME=`git --no-pager show -s --format='%cN' HEAD`
|
||||||
COMMITTER_USER_EMAIL=`git --no-pager show -s --format='%cE' HEAD`
|
COMMITTER_USER_EMAIL=`git --no-pager show -s --format='%cE' HEAD`
|
||||||
|
LATEST_TAG=`git describe --tags --abbrev=0`
|
||||||
|
|
||||||
publishRepo "${COMPONENT}" "${JS_BUILD_ARTIFACTS_DIR}"
|
publishRepo "${COMPONENT}" "${JS_BUILD_ARTIFACTS_DIR}"
|
||||||
done
|
done
|
||||||
|
@ -93,6 +97,7 @@ function publishPackages {
|
||||||
}
|
}
|
||||||
|
|
||||||
# See DEVELOPER.md for help
|
# See DEVELOPER.md for help
|
||||||
|
BRANCH=`git rev-parse --abbrev-ref HEAD`
|
||||||
if [ $# -gt 0 ]; then
|
if [ $# -gt 0 ]; then
|
||||||
ORG=$1
|
ORG=$1
|
||||||
publishPackages "ssh"
|
publishPackages "ssh"
|
||||||
|
@ -103,5 +108,5 @@ elif [[ \
|
||||||
ORG="angular"
|
ORG="angular"
|
||||||
publishPackages "http"
|
publishPackages "http"
|
||||||
else
|
else
|
||||||
echo "Not building the upstream/master branch, build artifacts won't be published."
|
echo "Not building the upstream/${BRANCH} branch, build artifacts won't be published."
|
||||||
fi
|
fi
|
||||||
|
|
Loading…
Reference in New Issue