forked from ariatemplates/hashspace
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ci-release.sh
21 lines (21 loc) · 1.07 KB
/
ci-release.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
export HASHSPACE_VERSION=`node -e 'console.log(require("./package.json").version)'`
echo "hashspace version: $HASHSPACE_VERSION"
if [ "$TRAVIS_PULL_REQUEST" = "false" ] && [ "$TRAVIS_SECURE_ENV_VARS" = "true" ]; then
# we need to clone the repo once again, as by default Travis CI makes
# shallow clones where gh-pages branch is not available and can't be fetched
git clone "https://github.com/${TRAVIS_REPO_SLUG}.git" hashspace-gh-pages && cd hashspace-gh-pages &&
git config user.email "[email protected]" &&
git config user.name "Titan Bot" &&
git checkout -b gh-pages origin/gh-pages &&
mkdir -p "./dist/${HASHSPACE_VERSION}" &&
cp -rv ../dist/* "./dist/${HASHSPACE_VERSION}/" &&
# we execute the release task
grunt release &&
# we add everything
git add -f . &&
# we let git check for deleted files (grunt release is auto removing all
# files related to docs)
git add -u &&
git commit -m "release ${TRAVIS_COMMIT}" &&
git push --quiet "https://${GH_CREDENTIALS}@github.com/${TRAVIS_REPO_SLUG}.git" gh-pages
fi