travis: more verbose deploy
This commit is contained in:
parent
8a5e0badb0
commit
5e7bf3df8d
1 changed files with 8 additions and 0 deletions
|
@ -1,10 +1,18 @@
|
||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
if [ "$TRAVIS_BRANCH" = 'master' ] && [ "$TRAVIS_PULL_REQUEST" == 'false' ]; then
|
if [ "$TRAVIS_BRANCH" = 'master' ] && [ "$TRAVIS_PULL_REQUEST" == 'false' ]; then
|
||||||
|
echo "Preparing to deploy to nexus..."
|
||||||
openssl aes-256-cbc -K $encrypted_f424d6efdd6f_key -iv $encrypted_f424d6efdd6f_iv \
|
openssl aes-256-cbc -K $encrypted_f424d6efdd6f_key -iv $encrypted_f424d6efdd6f_iv \
|
||||||
-in travis-ci/codesigning.asc.enc -out travis-ci/codesigning.asc -d
|
-in travis-ci/codesigning.asc.enc -out travis-ci/codesigning.asc -d
|
||||||
|
echo "Signing key decrypted"
|
||||||
gpg --batch --fast-import travis-ci/codesigning.asc
|
gpg --batch --fast-import travis-ci/codesigning.asc
|
||||||
|
echo "Signing key imported"
|
||||||
./mvnw --settings travis-ci/travis-settings.xml \
|
./mvnw --settings travis-ci/travis-settings.xml \
|
||||||
-Dskip-Tests=true -P release -B deploy
|
-Dskip-Tests=true -P release -B deploy
|
||||||
|
echo "Deploy complete"
|
||||||
|
else
|
||||||
|
echo "Not deploying"
|
||||||
|
echo " TRAVIS_BRANCH: $TRAVIS_BRANCH"
|
||||||
|
echo " TRAVIS_PULL_REQUEST: $TRAVIS_PULL_REQUEST"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue