Skip to content
This repository was archived by the owner on Jan 13, 2025. It is now read-only.

Commit

Permalink
Fix failing release (#6)
Browse files Browse the repository at this point in the history
  • Loading branch information
mijicd authored Jun 25, 2019
1 parent 4dfe047 commit ffd7062
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 9 deletions.
6 changes: 4 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -87,8 +87,10 @@ jobs:
key: sbt-cache
- run: echo -n "${PGP_PUBLIC}" | base64 -d > /tmp/public.asc
- run: echo -n "${PGP_SECRET}" | base64 -d > /tmp/secret.asc
- run: sbt ++2.11.12! releaseEarly
- run: sbt ++2.12.8! releaseEarly
- run: sbt ++2.11.12! interopMonixJVM/releaseEarly
- run: sbt ++2.12.8! interopMonixJVM/releaseEarly
- run: sbt ++2.11.12! interopMonixJS/releaseEarly
- run: sbt ++2.12.8! interopMonixJS/releaseEarly

workflows:
version: 2
Expand Down
13 changes: 6 additions & 7 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,12 @@ inThisBuild(
"john@degoes.net",
url("http://degoes.net")
)
),
pgpPublicRing := file("/tmp/public.asc"),
pgpSecretRing := file("/tmp/secret.asc"),
releaseEarlyWith := SonatypePublisher,
scmInfo := Some(
ScmInfo(url("https://github.com/zio/interop-monix/"), "scm:git:git@github.com:zio/interop-monix.git")
)
)
)
Expand All @@ -23,13 +29,6 @@ addCommandAlias("check", "all scalafmtSbtCheck scalafmtCheck test:scalafmtCheck"
addCommandAlias("testJVM", ";interopMonixJVM/test")
addCommandAlias("testJS", ";interopMonixJS/test")

pgpPublicRing := file("/tmp/public.asc")
pgpSecretRing := file("/tmp/secret.asc")
releaseEarlyWith := SonatypePublisher
scmInfo := Some(
ScmInfo(url("https://github.com/zio/interop-monix/"), "scm:git:git@github.com:zio/interop-monix.git")
)

lazy val root = project
.in(file("."))
.enablePlugins(ScalaJSPlugin)
Expand Down

0 comments on commit ffd7062

Please sign in to comment.