forked from edvinasbartkus/grails-disqus
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathtravis-build.sh
executable file
·44 lines (34 loc) · 1.25 KB
/
travis-build.sh
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
40
41
42
43
44
#!/bin/bash
set -e
rm -rf *.zip
./gradlew clean check assemble
filename=$(find build/libs -name "*.jar" | head -1)
filename=$(basename "$filename")
EXIT_STATUS=0
if [[ $TRAVIS_BRANCH == 'master' && $TRAVIS_REPO_SLUG == "gpc/grails-disqus" && $TRAVIS_PULL_REQUEST == 'false' ]]; then
echo "Publishing archives"
git config --global user.name "$GIT_NAME"
git config --global user.email "$GIT_EMAIL"
git config --global credential.helper "store --file=~/.git-credentials"
echo "https://$GH_TOKEN:@github.com" > ~/.git-credentials
# if [[ $filename != *-SNAPSHOT* ]]
# then
# git clone https://${GH_TOKEN}@github.com/$TRAVIS_REPO_SLUG.git -b gh-pages gh-pages --single-branch > /dev/null
# cd gh-pages
# git rm -rf .
# cp -r ../target/docs/. ./
# git add *
# git commit -a -m "Updating docs for Travis build: https://travis-ci.org/$TRAVIS_REPO_SLUG/builds/$TRAVIS_BUILD_ID"
# git push origin HEAD
# cd ..
# rm -rf gh-pages
# else
# echo "SNAPSHOT version, not publishing docs"
# fi
./gradlew bintrayUpload || EXIT_STATUS=$?
else
echo "Not on master branch, so not publishing"
echo "TRAVIS_BRANCH: $TRAVIS_BRANCH"
echo "TRAVIS_REPO_SLUG: $TRAVIS_REPO_SLUG"
echo "TRAVIS_PULL_REQUEST: $TRAVIS_PULL_REQUEST"
fi