We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 37817ec commit 5052f7aCopy full SHA for 5052f7a
2 files changed
.github/workflows/ci.yml
@@ -304,6 +304,6 @@ jobs:
304
path: project/target
305
306
- name: Import signing key
307
- run: echo $PGP_SECRET | gpg --import
+ run: echo $PGP_SECRET | base64 -d | gpg --import
308
309
- run: sbt ++${{ matrix.scala }} release
build.sbt
@@ -25,7 +25,7 @@ ThisBuild / githubWorkflowTargetTags += "v*"
25
26
ThisBuild / githubWorkflowPublishPreamble +=
27
WorkflowStep.Run(
28
- List("echo $PGP_SECRET | gpg --import"),
+ List("echo $PGP_SECRET | base64 -d | gpg --import"),
29
name = Some("Import signing key"))
30
31
ThisBuild / githubWorkflowPublish := Seq(WorkflowStep.Sbt(List("release")))
0 commit comments