aboutsummaryrefslogtreecommitdiff
path: root/admin/encryptAll.sh
diff options
context:
space:
mode:
authorLukas Rytz <lukas.rytz@gmail.com>2017-04-26 10:37:19 +0200
committerLukas Rytz <lukas.rytz@gmail.com>2017-04-26 10:37:19 +0200
commit6afb291eea3dfadb889a3ea622d73457c2d4e3ef (patch)
treebf8d69b6f46252515f2f56c556ecf3c97b87b567 /admin/encryptAll.sh
parent605760dbd421e648a0dae1d07517887f69e1caa8 (diff)
downloadscala-async-6afb291eea3dfadb889a3ea622d73457c2d4e3ef.tar.gz
scala-async-6afb291eea3dfadb889a3ea622d73457c2d4e3ef.tar.bz2
scala-async-6afb291eea3dfadb889a3ea622d73457c2d4e3ef.zip
Use scala-module-plugin, update tag-based publishing
The build didn't use the `scala-module-plugin` before but duplicated most of its settings - maybe I missed the reason why this is the case? Also update tag-based publishing to the latest version.
Diffstat (limited to 'admin/encryptAll.sh')
-rwxr-xr-xadmin/encryptAll.sh19
1 files changed, 0 insertions, 19 deletions
diff --git a/admin/encryptAll.sh b/admin/encryptAll.sh
deleted file mode 100755
index de7016b..0000000
--- a/admin/encryptAll.sh
+++ /dev/null
@@ -1,19 +0,0 @@
-#!/bin/bash
-
-# Based on https://gist.github.com/kzap/5819745:
-
-echo "This will encrypt the cleartext sensitive.sbt and admin/secring.asc, while making the encrypted versions available for decryption on Travis."
-echo "Update your .travis.yml as directed, and delete the cleartext versions."
-echo "Press enter to continue."
-read
-
-# 1. create a secret, put it in an environment variable while encrypting files -- UNSET IT AFTER
-export SECRET=$(cat /dev/urandom | head -c 10000 | openssl sha1)
-
-# 2. add the "secure: ..." line under the env section -- generate it with `` (install the travis gem first)
-travis encrypt SECRET=$SECRET
-
-admin/encrypt.sh admin/secring.asc
-admin/encrypt.sh sensitive.sbt
-
-echo "Remember to rm sensitive.sbt admin/secring.asc -- once you do, they cannot be recovered (except on Travis)!" \ No newline at end of file