Skip to content

Commit

Permalink
publish: zio-logging (#1286)
Browse files Browse the repository at this point in the history
  • Loading branch information
d11-amitsingh authored Jun 2, 2022
1 parent 085ea0d commit 6d17902
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,15 @@ val releaseDrafterVersion = "5"
val _ = sys.props += ("ZHttpLogLevel" -> "INFO")

// CI Configuration
ThisBuild / githubWorkflowJavaVersions := Seq(JavaSpec.graalvm("21.1.0", "11"), JavaSpec.temurin("8"))
ThisBuild / githubWorkflowPREventTypes := Seq(
ThisBuild / githubWorkflowJavaVersions := Seq(JavaSpec.graalvm("21.1.0", "11"), JavaSpec.temurin("8"))
ThisBuild / githubWorkflowPREventTypes := Seq(
PREventType.Opened,
PREventType.Synchronize,
PREventType.Reopened,
PREventType.Edited,
PREventType.Labeled,
)
ThisBuild / githubWorkflowAddedJobs :=
ThisBuild / githubWorkflowAddedJobs :=
Seq(
WorkflowJob(
id = "update_release_draft",
Expand Down Expand Up @@ -65,15 +65,15 @@ ThisBuild / githubWorkflowPublish :=
)
//scala fix isn't available for scala 3 so ensure we only run the fmt check
//using the latest scala 2.13
ThisBuild / githubWorkflowBuildPreamble := Seq(
ThisBuild / githubWorkflowBuildPreamble := Seq(
WorkflowStep.Run(
name = Some("Check formatting"),
commands = List(s"sbt ++${Scala213} fmtCheck"),
cond = Some(s"matrix.scala == '${Scala213}'"),
),
)

ThisBuild / githubWorkflowBuildPostamble :=
ThisBuild / githubWorkflowBuildPostamble :=
WorkflowJob(
"checkDocGeneration",
"Check doc generation",
Expand Down Expand Up @@ -134,7 +134,7 @@ lazy val zhttpTest = (project in file("zio-http-test"))

lazy val zhttpLogging = (project in file("zio-http-logging"))
.settings(stdSettings("zhttp-logging"))
.settings(publishSetting(false))
.settings(publishSetting(true))
.settings(
libraryDependencies ++= {
if (isScala3(scalaVersion.value)) Seq.empty
Expand Down

0 comments on commit 6d17902

Please sign in to comment.