From 75fa8ed109a3bea715113406e5e149ee227e3c51 Mon Sep 17 00:00:00 2001 From: Jakob Odersky Date: Sat, 31 Mar 2018 22:32:51 -0700 Subject: Update signing keys --- .ci/build | 39 +++++++++++++++++++++++---------------- .ci/sec.gpg.enc | Bin 4176 -> 880 bytes 2 files changed, 23 insertions(+), 16 deletions(-) diff --git a/.ci/build b/.ci/build index f579187..351f08b 100755 --- a/.ci/build +++ b/.ci/build @@ -1,5 +1,7 @@ #!/bin/bash -set -ev +set -o errexit +set -o nounset +set -o verbose sbt +test sbt \ @@ -10,26 +12,31 @@ sbt \ # Automatic publishing for tags that start with `v` 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_e5a450dd395a_key -iv $encrypted_e5a450dd395a_iv -in .ci/sec.gpg.enc -out sec.gpg -d + gpg --keyserver keyserver.ubuntu.com --recv-keys "2B50AAFF11989ECC8531EB4A7C921C6769797655" + openssl aes-256-cbc \ + -K "$encrypted_1f829de8111f_key" \ + -iv "$encrypted_1f829de8111f_iv" \ + -in .ci/sec.gpg.enc \ + -out sec.gpg \ + -d gpg --import sec.gpg # Setup sbt-pgp plugin - cat < gpg.sbt - pgpSigningKey in Global := Some(0xE107A4A6CF561C67l) - useGpgAgent in Global := true - useGpg in Global := true -EOF + cat <<-EOF > gpg.sbt + pgpSigningKey in Global := Some(0x7C921C6769797655l) + useGpgAgent in Global := true + useGpg in Global := true + EOF # Setup publishing - cat < sonatype.sbt - credentials in Global += Credentials( - "Sonatype Nexus Repository Manager", - "oss.sonatype.org", - "8VNUX6+2", - "$SONATYPE_PASS" - ) -EOF + cat <<-EOF > sonatype.sbt + credentials in Global += Credentials( + "Sonatype Nexus Repository Manager", + "oss.sonatype.org", + "8VNUX6+2", + "$SONATYPE_PASS" + ) + EOF # Build and publish sbt clean diff --git a/.ci/sec.gpg.enc b/.ci/sec.gpg.enc index 95bd3c4..feba89a 100644 Binary files a/.ci/sec.gpg.enc and b/.ci/sec.gpg.enc differ -- cgit v1.2.3