aboutsummaryrefslogtreecommitdiff
path: root/.ci/build
blob: 8ec918517794492a1d512c0d359efcd0c2728de9 (plain) (blame)
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
39
40
41
42
43
#!/bin/bash
set -o errexit
set -o nounset
set -o verbose

sbt +compile +tests/run

# 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-keys \
	"DC6A9A5E884B2D680E080467E107A4A6CF561C67"
    openssl aes-256-cbc \
	    -K "$encrypted_c8feacd00769_key" \
	    -iv "$encrypted_c8feacd00769_iv" \
	    -in .ci/sec.gpg.enc \
	    -out sec.gpg \
	    -d
    gpg --import sec.gpg

    # Setup sbt-pgp plugin
    cat <<-EOF > gpg.sbt
	pgpSigningKey in Global := Some(0xE107A4A6CF561C67l)
	useGpgAgent in Global := true
	useGpg in Global := true
	EOF

    # Setup publishing
    cat <<-EOF > sonatype.sbt
	credentials in Global += Credentials(
	    "Sonatype Nexus Repository Manager",
	    "oss.sonatype.org",
	    "8VNUX6+2",
	    "$SONATYPE_PASS"
	)
	EOF

    sbt \
	+coreJVM/publishSigned \
	+coreJS/publishSigned \
	+coreNative/publishSigned \
	sonatypeRelease
fi