diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 43f509a..d88706a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -186,7 +186,7 @@ jobs: dependency-submission: name: Submit Dependencies - if: github.event_name != 'pull_request' + if: github.event.repository.fork == false && github.event_name != 'pull_request' strategy: matrix: os: [ubuntu-latest] diff --git a/core/build.sbt b/core/build.sbt index 3ca4cc9..8403a46 100644 --- a/core/build.sbt +++ b/core/build.sbt @@ -1,4 +1,4 @@ -val sbtTypelevelVersion = "0.7.2" // https://github.com/typelevel/sbt-typelevel/releases +val sbtTypelevelVersion = "0.7.3" // https://github.com/typelevel/sbt-typelevel/releases val sbtScoverageVersion = "2.2.0" // https://github.com/scoverage/sbt-scoverage/releases addSbtPlugin("org.typelevel" % "sbt-typelevel" % sbtTypelevelVersion) diff --git a/core/src/main/scala/io/circe/sbt/CirceOrgPlugin.scala b/core/src/main/scala/io/circe/sbt/CirceOrgPlugin.scala index 3a6ad2d..4f31265 100644 --- a/core/src/main/scala/io/circe/sbt/CirceOrgPlugin.scala +++ b/core/src/main/scala/io/circe/sbt/CirceOrgPlugin.scala @@ -23,11 +23,11 @@ import sbt._ import scalafix.sbt.ScalafixPlugin.autoImport._ import scoverage.ScoverageSbtPlugin.autoImport._ import scoverage._ +import xerial.sbt.Sonatype.autoImport._ import GenerativeKeys._ import TypelevelSettingsPlugin.autoImport._ import TypelevelCiPlugin.autoImport._ -import TypelevelSonatypePlugin.autoImport._ object CirceOrgPlugin extends AutoPlugin { object autoImport { @@ -55,7 +55,7 @@ object CirceOrgPlugin extends AutoPlugin { lazy val publishSettings: Seq[Setting[_]] = Seq( - tlSonatypeUseLegacyHost := true, + sonatypeCredentialHost := xerial.sbt.Sonatype.sonatypeLegacy, tlJdkRelease := Some(8) )