aboutsummaryrefslogtreecommitdiff
path: root/.ci
diff options
context:
space:
mode:
authorJakob Odersky <jakob@odersky.com>2017-12-03 14:44:33 -0800
committerJakob Odersky <jakob@odersky.com>2017-12-03 14:50:55 -0800
commit1c07512716d98e4424760e88f7f3378fc5708b04 (patch)
tree3758fb6953bbe137f4cfa822690586189258a7d4 /.ci
parent1155700447a091a21646643cef9605878b238b10 (diff)
downloadakka-serial-1c07512716d98e4424760e88f7f3378fc5708b04.tar.gz
akka-serial-1c07512716d98e4424760e88f7f3378fc5708b04.tar.bz2
akka-serial-1c07512716d98e4424760e88f7f3378fc5708b04.zip
Fix publishingv4.1.2
Diffstat (limited to '.ci')
-rwxr-xr-x.ci/build13
1 files changed, 11 insertions, 2 deletions
diff --git a/.ci/build b/.ci/build
index 10edc63..f579187 100755
--- a/.ci/build
+++ b/.ci/build
@@ -23,7 +23,7 @@ EOF
# Setup publishing
cat <<EOF > sonatype.sbt
- credentials += Credentials(
+ credentials in Global += Credentials(
"Sonatype Nexus Repository Manager",
"oss.sonatype.org",
"8VNUX6+2",
@@ -34,5 +34,14 @@ EOF
# Build and publish
sbt clean
sbt -Drelease=true +test
- sbt -Drelease=true +publishSigned sonatypeRelease
+
+ # Separate publish steps are required as the "native" project does
+ # not cross-compile and sbt complains if a published file is
+ # overwritten
+ sbt -Drelease=true \
+ native/publishSigned \
+ +sync/publishSigned \
+ +core/publishSigned \
+ +stream/publishSigned \
+ sonatypeRelease
fi