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.
2 parents 6a1cdad + 4c993ea commit 8103d02Copy full SHA for 8103d02
.github/workflows/ci.yml
@@ -174,6 +174,8 @@ jobs:
174
tar xf targets.tar
175
rm targets.tar
176
177
+ - uses: olafurpg/setup-gpg@v2
178
+
179
- name: Publish JARs
180
env:
181
PGP_PASSPHRASE: ${{ secrets.PGP_PASSPHRASE }}
build.sbt
@@ -21,6 +21,8 @@ val Scala213 = "2.13.3"
21
22
ThisBuild / crossScalaVersions := Seq(Scala212, Scala213)
23
ThisBuild / githubWorkflowTargetTags ++= Seq("v*")
24
+ThisBuild / githubWorkflowPublishPreamble +=
25
+ WorkflowStep.Use("olafurpg", "setup-gpg", "v2")
26
ThisBuild / githubWorkflowPublishTargetBranches := Seq(
27
RefPredicate.Equals(Ref.Branch("master")),
28
RefPredicate.StartsWith(Ref.Tag("v"))
0 commit comments