From c6f3ca7c280e7fc0a537a2de1fe70a760002812a Mon Sep 17 00:00:00 2001 From: Felipe Forbeck Date: Wed, 28 Jul 2021 17:02:36 -0300 Subject: [PATCH] Fix env var name --- build.sbt | 9 ++------- project/plugins.sbt | 1 - 2 files changed, 2 insertions(+), 8 deletions(-) diff --git a/build.sbt b/build.sbt index fa1a511d2..b51299727 100644 --- a/build.sbt +++ b/build.sbt @@ -13,14 +13,14 @@ githubOwner := "openlawteam" githubRepository := "openlaw-core" githubTokenSource := TokenSource - .Environment("GITHUB_TOKEN") + .Environment("TOKEN") credentials += Credentials( "GitHub Packages", "maven.pkg.github.com", sys.env.getOrElse("USERNAME", "INVALID_USERNAME"), - sys.env.getOrElse("GITHUB_TOKEN", "INVALID_GITHUBTOKEN") + sys.env.getOrElse("TOKEN", "INVALID_GITHUBTOKEN") ) licenses += ("Apache-2.0", url("https://opensource.org/licenses/Apache-2.0")) @@ -73,11 +73,6 @@ lazy val publishSettings = Seq( publishArtifact in (Test, packageBin) := true, homepage := Some(url(s"https://github.com/$username/$repo")), licenses += ("Apache-2.0", url("https://opensource.org/licenses/Apache-2.0")), - bintrayReleaseOnPublish in ThisBuild := true, - bintrayOrganization := Some("openlawos"), - bintrayRepository := "openlaw-core", - bintrayPackageLabels := Seq("openlaw-core"), - bintrayVcsUrl := Some(s"git@github.com:$username/$repo.git"), scmInfo := Some( ScmInfo( url(s"https://github.com/$username/$repo"), diff --git a/project/plugins.sbt b/project/plugins.sbt index 92447c755..dbc83b644 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -1,7 +1,6 @@ logLevel := Level.Warn resolvers += "Typesafe Repository" at "https://repo.typesafe.com/typesafe/releases/" -resolvers += "Bintray sbt-reactjs" at "https://dl.bintray.com/ddispaltro/sbt-plugins/" resolvers += Resolver.url( "sbt-plugins", url("https://dl.bintray.com/ssidorenko/sbt-plugins/")