Skip to content

Commit

Permalink
Fix release process (#133)
Browse files Browse the repository at this point in the history
  • Loading branch information
guizmaii authored Jun 28, 2024
1 parent 42e6d18 commit 7715e38
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ jobs:

- name: Publish package
run: |
sbt "clean;+zio-opentelemetry-datadog-tracing-provider/ci-release"
sbt "clean;sbt-datadog/ci-release"
sbt releaseZioOpentelemetryDatadogTracingProvider
sbt releaseSbtDatadog
env:
PGP_PASSPHRASE: ${{ secrets.PGP_PASSPHRASE }}
PGP_SECRET: ${{ secrets.PGP_SECRET }}
Expand Down
4 changes: 3 additions & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,9 @@ ThisBuild / developers :=
)
)

addCommandAlias("releaseSbtDatadog", "project sbt-datadog;clean;ci-release")
addCommandAlias("releaseZioOpentelemetryDatadogTracingProvider", "project zio-opentelemetry-datadog-tracing-provider;clean;+ci-release")

val scala212 = "2.12.19"
val scala213 = "2.13.14"
val scala3 = "3.3.3"
Expand All @@ -22,7 +25,6 @@ lazy val root =
project
.in(file("."))
.settings(
name := "sbt-datadog",
publish / skip := true,
crossScalaVersions := Nil, // https://www.scala-sbt.org/1.x/docs/Cross-Build.html#Cross+building+a+project+statefully,
)
Expand Down

0 comments on commit 7715e38

Please sign in to comment.