Skip to content

Commit

Permalink
revise publish settings
Browse files Browse the repository at this point in the history
  • Loading branch information
BaekGeunYoung committed Mar 13, 2024
1 parent 9841fb3 commit 6a5a562
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -18,22 +18,22 @@ val commonPublishSettings = Seq(
Credentials(
"GitHub Package Registry",
"maven.pkg.github.com",
scala.sys.env.get("PACKAGE_GITHUB_TOKEN").fold(scala.sys.env("CHAI_GPR_USERNAME"))(_ => "iamport-github"),
scala.sys.env.getOrElse("PACKAGE_GITHUB_TOKEN", scala.sys.env("CHAI_GPR_TOKEN"))
scala.sys.env.getOrElse("GITHUB_ACTOR", ""),
scala.sys.env.getOrElse("GITHUB_TOKEN", "")
)
),
publishTo := Some(
"GitHub Package Registry (iamport/zio-grpc)" at "https://maven.pkg.github.com/iamport/zio-grpc"
"GitHub Package Registry (portone-io/zio-grpc)" at "https://maven.pkg.github.com/portone-io/zio-grpc"
),
resolvers += "GitHub Package Registry (iamport/zio-grpc)" at "https://maven.pkg.github.com/iamport/zio-grpc"
resolvers += "GitHub Package Registry (portone-io/zio-grpc)" at "https://maven.pkg.github.com/portone-io/zio-grpc"
)

publish / skip := true

inThisBuild(
List(
organization := "com.thesamet.scalapb.zio-grpc",
homepage := Some(url("https://github.com/portne/zio-grpc")),
homepage := Some(url("https://github.com/portone-io/zio-grpc")),
licenses := List(
"Apache-2.0" -> url("http://www.apache.org/licenses/LICENSE-2.0")
),
Expand Down

0 comments on commit 6a5a562

Please sign in to comment.