Skip to content

Commit

Permalink
fix importing of the PGP key on the release workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
ivantopo committed Mar 6, 2020
1 parent 295da01 commit 162891d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion project/Build.scala
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,7 @@ object BaseProject extends AutoPlugin {

private def setupGpg(): Unit = {
sys.env.get("PGP_SECRET").foreach(secret => {
(s"echo $secret" #| "base64 --decode" #| "gpg --import ").!
(s"echo $secret" #| "base64 --decode" #| "gpg --import --no-tty --batch ").!
})
}

Expand Down

0 comments on commit 162891d

Please sign in to comment.