Skip to content

Commit

Permalink
Fix publishing artifacts
Browse files Browse the repository at this point in the history
  • Loading branch information
WojciechMazur committed Apr 9, 2024
1 parent 8c7df93 commit 13cb2ec
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,14 @@ inThisBuild(
scalaVersion := Scala213Version,
semanticdbEnabled := true,
semanticdbIncludeInJar := true,
semanticdbVersion := scalafixSemanticdb.revision
semanticdbVersion := scalafixSemanticdb.revision,
versionScheme := Some("early-semver")
)
)

Global / PgpKeys.pgpPassphrase := sys.env.get("PGP_PW").map(_.toCharArray())
Global / PgpKeys.pgpSigningKey := Some("BCE7DB09E1B2687C9C9C3AB2D8DF100359D36CBF")

lazy val publishSettings = Def.settings(
publishTo := sonatypePublishToBundle.value,
credentials ++= (
Expand All @@ -37,9 +41,7 @@ lazy val publishSettings = Def.settings(
url("https://github.com/VirtusLabRnD/scalafix-migrate-circe-generic-extras"),
"scm:[email protected]:VirtusLabRnD/scalafix-migrate-circe-generic-extras.git"
)
),
ThisBuild / versionScheme := Some("early-semver"),
PgpKeys.pgpPassphrase := sys.env.get("PGP_PW").map(_.toCharArray()),
)
)

lazy val rules = project.settings(
Expand Down

0 comments on commit 13cb2ec

Please sign in to comment.