-
Notifications
You must be signed in to change notification settings - Fork 3
/
build
executable file
·38 lines (34 loc) · 1.05 KB
/
build
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
#!/bin/bash
set -ev
sbt \
scalafmtCheck \
+sprayJsonDerivationJVM/mimaReportBinaryIssues \
+test
# Automatic publishing for tags that start with `v<digit>`
if [[ "$TRAVIS_PULL_REQUEST" == "false" && "$TRAVIS_TAG" =~ ^v[0-9].* ]]; then
# Setup gpg keys
gpg --keyserver keyserver.ubuntu.com --recv-key "DC7751D77486D755815C04AB488F99C904F077E8"
openssl aes-256-cbc -K "$encrypted_a878666d1e0e_key" -iv "$encrypted_a878666d1e0e_iv" -in .ci/sec.gpg.enc -out sec.gpg -d
gpg --import sec.gpg
# Set up publishing settings and credentials
cat <<EOF > credentials.sbt
credentials in Global += Credentials(
"GnuPG Key ID",
"gpg",
"DC7751D77486D755815C04AB488F99C904F077E8",
"ignored"
)
credentials in Global += Credentials(
"Sonatype Nexus Repository Manager",
"oss.sonatype.org",
"vZKBpUCV",
"$SONATYPE_PASS"
)
EOF
# Publish and release
sbt \
+sprayJsonDerivationJVM/publish \
+sprayJsonDerivationJS/publish \
+sprayJsonDerivationNative/publish \
sonatypeRelease
fi