From 9520fbc6a7303254c6b5729fb1d91ecf36f6e542 Mon Sep 17 00:00:00 2001 From: Jakob Odersky Date: Sat, 31 Mar 2018 21:58:07 -0700 Subject: Update signing keys --- .travis/bintray.enc | 2 +- .travis/build | 36 +++++++++++++++++++++++------------- .travis/sec.gpg.enc | Bin 2480 -> 880 bytes 3 files changed, 24 insertions(+), 14 deletions(-) diff --git a/.travis/bintray.enc b/.travis/bintray.enc index 502ece0..87f28be 100644 --- a/.travis/bintray.enc +++ b/.travis/bintray.enc @@ -1 +1 @@ -MLԹv5G~:Z`,8R_ↄPD^n4ŒkKB3VAa㵗}J ^ȹ w[˴xc]T@8 \ No newline at end of file +V^!&61>ɛPCē9'Ejwh]XheSvI 3 \d\38!7g/GUnys <]^2vQ  jU \ No newline at end of file diff --git a/.travis/build b/.travis/build index d17a7c6..7ef4083 100755 --- a/.travis/build +++ b/.travis/build @@ -1,31 +1,41 @@ #!/bin/bash -set -ev +set -o errexit +set -o nounset +set -o verbose sbt test-plugin # Automatic publishing for tags that start with `v` if [[ "$TRAVIS_PULL_REQUEST" == "false" && "$TRAVIS_TAG" =~ ^v[0-9].* ]]; then # Import gpg keys (download public key to check for renewal) - gpg --keyserver keyserver.ubuntu.com --recv-keys "DC6A9A5E884B2D680E080467E107A4A6CF561C67" - openssl aes-256-cbc -K $encrypted_406cb857227a_key -iv $encrypted_406cb857227a_iv -in .travis/sec.gpg.enc -out sec.gpg -d + gpg --keyserver keyserver.ubuntu.com --recv-keys "2B50AAFF11989ECC8531EB4A7C921C6769797655" + openssl aes-256-cbc \ + -K "$encrypted_35cdae908c05_key" \ + -iv "$encrypted_35cdae908c05_iv" \ + -in .travis/sec.gpg.enc \ + -out sec.gpg -d gpg --import sec.gpg # Setup sbt-pgp plugin - cat < project/gpg.sbt - addSbtPlugin("com.jsuereth" % "sbt-pgp" % "1.1.0-M1") -EOF - cat < gpg.sbt - pgpSigningKey in Global := Some(0xE107A4A6CF561C67l) + cat <<-EOF > project/gpg.sbt + addSbtPlugin("com.jsuereth" % "sbt-pgp" % "1.1.1") + EOF + cat <<-EOF > gpg.sbt + pgpSigningKey in Global := Some(0x7C921C6769797655l) useGpgAgent in Global := true useGpg in Global := true -EOF + EOF # Setup bitray publishing plugin - cat < project/bintray.sbt - addSbtPlugin("org.foundweekends" % "sbt-bintray" % "0.5.1") -EOF + cat <<-EOF > project/bintray.sbt + addSbtPlugin("org.foundweekends" % "sbt-bintray" % "0.5.4") + EOF mkdir ~/.bintray - openssl aes-256-cbc -K $encrypted_9971283457ae_key -iv $encrypted_9971283457ae_iv -in .travis/bintray.enc -out ~/.bintray/.credentials -d + openssl aes-256-cbc \ + -K "$encrypted_35cdae908c05_key" \ + -iv "$encrypted_35cdae908c05_iv" \ + -in .travis/bintray.enc \ + -out ~/.bintray -d # Publish sbt +publishSigned diff --git a/.travis/sec.gpg.enc b/.travis/sec.gpg.enc index 36e539b..c241d20 100644 Binary files a/.travis/sec.gpg.enc and b/.travis/sec.gpg.enc differ -- cgit v1.2.3