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 0ec5c0e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -18,14 +18,14 @@ 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/iamport/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/iamport/zio-grpc"
)

publish / skip := true
Expand Down

0 comments on commit 0ec5c0e

Please sign in to comment.