File tree Expand file tree Collapse file tree 4 files changed +11
-4
lines changed
Expand file tree Collapse file tree 4 files changed +11
-4
lines changed Original file line number Diff line number Diff line change 2727 env :
2828 PGP_PASSPHRASE : ${{ secrets.GPG_PASSPHRASE }}
2929 PGP_SECRET : ${{ secrets.GPG_PRIVATE_KEY }}
30- SONATYPE_PASSWORD : ${{ secrets.OSSRH_PASSWORD }}
31- SONATYPE_USERNAME : ${{ secrets.OSSRH_USERNAME }}
30+ SONATYPE_PASSWORD : ${{ secrets.SONATYPE_PASSWORD }}
31+ SONATYPE_USERNAME : ${{ secrets.SONATYPE_USERNAME }}
Original file line number Diff line number Diff line change @@ -38,3 +38,10 @@ Test / tpolecatExcludeOptions += ScalacOptions.warnNonUnitStatement
3838Test / parallelExecution := false
3939Test / publishArtifact := false
4040pomIncludeRepository := (_ => false )
41+
42+ // Sonatype Central publishing configuration
43+ ThisBuild / publishTo := {
44+ val centralSnapshots = " https://central.sonatype.com/repository/maven-snapshots/"
45+ if (isSnapshot.value) Some (" central-snapshots" at centralSnapshots)
46+ else localStaging.value
47+ }
Original file line number Diff line number Diff line change 1- sbt.version = 1.10.11
1+ sbt.version = 1.11.2
Original file line number Diff line number Diff line change 1- addSbtPlugin(" com.github.sbt" % " sbt-ci-release" % " 1.5.12 " )
1+ addSbtPlugin(" com.github.sbt" % " sbt-ci-release" % " 1.11.1 " )
22addSbtPlugin(" org.typelevel" % " sbt-tpolecat" % " 0.5.2" )
You can’t perform that action at this time.
0 commit comments