Skip to content

Commit

Permalink
Add missing plugin for publishing
Browse files Browse the repository at this point in the history
  • Loading branch information
majk-p committed Jul 23, 2024
1 parent 31df954 commit 55f05ff
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 5 deletions.
13 changes: 8 additions & 5 deletions build.sbt
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
import com.typesafe.tools.mima.core.ProblemFilters
import com.typesafe.tools.mima.core.*
import org.typelevel.sbt.gha.RefPredicate
import org.typelevel.sbt.gha.Ref
import org.scalafmt.sbt.ScalafmtPlugin.{globalInstance => Scalafmt}

Global / onChangedBuildSource := ReloadOnSourceChanges
Expand Down Expand Up @@ -45,11 +47,12 @@ inThisBuild(
tlGitHubDev("zainab-ali", "Zainab Ali")
),
githubWorkflowJavaVersions := Seq(JavaSpec.temurin("17")),
tlBaseVersion := "0.0",
tlFatalWarnings := sys.env.get("GITHUB_ACTIONS").contains("true"),
tlJdkRelease := Some(17),
organizationName := "SiriusXM",
startYear := Some(2024),
githubWorkflowPublishTargetBranches += RefPredicate.Equals(Ref.Branch("fix-publishing")),
tlBaseVersion := "0.0",
tlFatalWarnings := sys.env.get("GITHUB_ACTIONS").contains("true"),
tlJdkRelease := Some(17),
organizationName := "SiriusXM",
startYear := Some(2024),
licenses += ("Apache-2.0", new URL("https://www.apache.org/licenses/LICENSE-2.0.txt"))
)
)
Expand Down
1 change: 1 addition & 0 deletions project/plugins.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ addSbtPlugin("org.typelevel" % "sbt-typelevel-scalafix" % "0.7.1")
addSbtPlugin("org.typelevel" % "sbt-typelevel-settings" % "0.7.1")
addSbtPlugin("org.typelevel" % "sbt-typelevel-github" % "0.7.1")
addSbtPlugin("org.typelevel" % "sbt-typelevel-github-actions" % "0.7.1")
addSbtPlugin("org.typelevel" % "sbt-typelevel-ci-release" % "0.7.1")
addSbtPlugin("com.eed3si9n" % "sbt-buildinfo" % "0.12.0")
addSbtPlugin("com.eed3si9n" % "sbt-projectmatrix" % "0.10.0")
addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.16.0")
Expand Down

0 comments on commit 55f05ff

Please sign in to comment.