We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5da4f36 commit f8a7caaCopy full SHA for f8a7caa
2 files changed
.ci/deploy.sh
@@ -27,5 +27,6 @@ version=$(mvn exec:exec -q -N -Dexec.executable="echo" -Dexec.args='${project.ve
27
echo "${version}"
28
29
if [ "$version" ]; then
30
+ export GPG_TTY=$(tty)
31
mvn clean deploy -Psnapshot --settings "${TRAVIS_BUILD_DIR}"/.mvn/settings.xml -Dgpg.executable=gpg2 -Dgpg.keyname="$GPG_KEY_NAME"-Dgpg.passphrase="$GPG_PASSPHRASE"
-fi
32
+fi
.ci/release.sh
@@ -24,6 +24,7 @@ if [ -z "$GPG_PASSPHRASE" ]; then
24
fi
25
26
if [ "$TRAVIS_TAG" ]; then
mvn clean deploy -Prelease --settings "${TRAVIS_BUILD_DIR}"/.mvn/settings.xml -Dgpg.executable=gpg2 -Dgpg.keyname="$GPG_KEY_NAME"-Dgpg.passphrase="$GPG_PASSPHRASE"
else
echo "not create a tag"
0 commit comments