aboutsummaryrefslogtreecommitdiff
path: root/admin/build.sh
diff options
context:
space:
mode:
Diffstat (limited to 'admin/build.sh')
-rwxr-xr-xadmin/build.sh19
1 files changed, 19 insertions, 0 deletions
diff --git a/admin/build.sh b/admin/build.sh
new file mode 100755
index 0000000..f0692c6
--- /dev/null
+++ b/admin/build.sh
@@ -0,0 +1,19 @@
+#!/bin/bash
+
+# prep environment for publish to sonatype staging if the HEAD commit is tagged
+
+# git on travis does not fetch tags, but we have TRAVIS_TAG
+# headTag=$(git describe --exact-match ||:)
+
+if [ "$TRAVIS_JDK_VERSION" == "$PUBLISH_JDK" ] && [[ "$TRAVIS_TAG" =~ ^v[0-9]+\.[0-9]+\.[0-9]+(-[A-Za-z0-9-]+)? ]]; then
+ echo "Going to release from tag $TRAVIS_TAG!"
+ myVer=$(echo $TRAVIS_TAG | sed -e s/^v// | sed -e 's/_[0-9]*\.[0-9]*//')
+ publishVersion='set every version := "'$myVer'"'
+ extraTarget="publish-signed"
+
+ cat admin/gpg.sbt >> project/plugins.sbt
+ admin/decrypt.sh sensitive.sbt
+ (cd admin/ && ./decrypt.sh secring.asc)
+fi
+
+sbt ++$TRAVIS_SCALA_VERSION "$publishVersion" clean update compile test $extraTarget