Skip to content

Commit 6ad16a6

Browse files
authored
Merge pull request #371 from sjrd/fix-auto-publishing
Fix the auto-publishing setup (hopefully).
2 parents 8f965b7 + 0226142 commit 6ad16a6

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

build.sbt

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -115,8 +115,8 @@ val `scalajs-bundler` =
115115
.aggregate(`sbt-scalajs-bundler`, `sbt-web-scalajs-bundler`)
116116

117117
inThisBuild(List(
118-
pgpPublicRing := file("./travis/local.pubring.asc"),
119-
pgpSecretRing := file("./travis/local.secring.asc"),
118+
pgpPublicRing := file("./local.pubring.asc"),
119+
pgpSecretRing := file("./local.secring.asc"),
120120
pgpPassphrase := sys.env.get("PGP_PASS").map(_.toArray),
121121
credentials ++= (
122122
for {
@@ -149,6 +149,7 @@ inThisBuild(List(
149149
))
150150

151151
lazy val commonSettings = List(
152+
publishTo := sonatypePublishTo.value,
152153
runScripted := runScriptedTask.value,
153154
scriptedLaunchOpts ++= Seq(
154155
"-Dplugin.version=" + version.value,

0 commit comments

Comments
 (0)