Skip to content

Commit

Permalink
Updated woodhouse token.
Browse files Browse the repository at this point in the history
  • Loading branch information
jmalloc committed Jun 19, 2014
1 parent 9d1d9e5 commit 6ed9fce
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ env:
global:
- DIALEKT_PUBLISH_VERSION=openjdk7
- DIALEKT_PUBLISH_BRANCH=develop
- secure: nn8cGhLEc5aHWu3rtlxy/6O83+PaiWzPVtBNCz/CJC0c9TDFJ1Dmysicx8Mf+H6iAu8wqhWg4P3tTARtm+Za34UKyXBql7RFf0FI2NjjElzSSLuY2COIp5To1emufNarHWPINwXMpLBPwnNanMX8xpCOiOhXLzjwQcnBlY9ODvA=
- secure: FLS0PZ3QNCYAKAbvSCqOVjX3gPv1JIX3cVGNZM9kJtRrtBwh/ruSWlgRD/yHx+NGmAgL4lctAGk+TUvNly36FplYuBKUHbtCn67dzPu8NVj+pIwFpVpWkQYDRk22H3jBFSttHwFHaaQ0htJlEJCr0D/XugypG3/sflMtO1XOQpM=

install: ./travis/install.sh
script: ./travis/build.sh
Expand Down
2 changes: 1 addition & 1 deletion travis/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ if [ "openjdk7" == $TRAVIS_JDK_VERSION ]; then
fi

# install the tools required to publish build artifacts
if [ "$TRAVIS_JDK_VERSION" == "$DIALEKT_PUBLISH_VERSION" ] && [ "$DIALEKT_PUBLISH_BRANCH" == "$TRAVIS_BRANCH" ] && [ "" != "$WOODHOUSE_TOKEN" ]; then
if [ $TRAVIS_JDK_VERSION == $DIALEKT_PUBLISH_VERSION ] && [ $TRAVIS_BRANCH == $DIALEKT_PUBLISH_BRANCH ] && [ "true" == $TRAVIS_SECURE_ENV_VARS ]; then
echo 'Installing PHP ...'
sudo apt-get update -qq
sudo apt-get install -qq php5-cli
Expand Down
2 changes: 1 addition & 1 deletion travis/success.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#/bin/sh

# publish API documentation
if [ "$TRAVIS_JDK_VERSION" == "$DIALEKT_PUBLISH_VERSION" ] && [ "$DIALEKT_PUBLISH_BRANCH" == "$TRAVIS_BRANCH" ] && [ "" != "$WOODHOUSE_TOKEN" ]; then
if [ $TRAVIS_JDK_VERSION == $DIALEKT_PUBLISH_VERSION ] && [ $TRAVIS_BRANCH == $DIALEKT_PUBLISH_BRANCH ] && [ "true" == $TRAVIS_SECURE_ENV_VARS ]; then
mvn javadoc:javadoc
./woodhouse publish --auth-token $WOODHOUSE_TOKEN $TRAVIS_REPO_SLUG target/site/apidocs:artifacts/documentation/api
fi

0 comments on commit 6ed9fce

Please sign in to comment.