We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 162defe commit f559252Copy full SHA for f559252
.travis.yml
@@ -12,9 +12,8 @@ install:
12
- mvn --settings .travis/mvnsettings.xml install -DskipTests=true -Dgpg.skip -Dmaven.javadoc.skip=true -B -V
13
14
before_install:
15
- -
16
- provider: script
17
- script: .travis/before-install.sh
+ - if [ ! -z "$GPG_SECRET_KEYS" ]; then echo $GPG_SECRET_KEYS | base64 --decode | $GPG_EXECUTABLE --import; fi
+ - if [ ! -z "$GPG_OWNERTRUST" ]; then echo $GPG_OWNERTRUST | base64 --decode | $GPG_EXECUTABLE --import-ownertrust; fi
18
19
deploy:
20
-
.travis/before-install.sh
0 commit comments