Skip to content

Commit

Permalink
Up version + preload credentials if exists
Browse files Browse the repository at this point in the history
  • Loading branch information
REDNBLACK committed Jan 17, 2022
1 parent 537e5f8 commit 4f767e1
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion build.sbt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
lazy val commonSettings = Seq(
version := "0.25.0",
version := "0.26.0",
organization := "com.tethys-json",
scalaVersion := "2.12.15",
crossScalaVersions := Seq("2.12.15", "2.13.8"),
Expand Down Expand Up @@ -36,6 +36,9 @@ lazy val commonSettings = Seq(
url = url("https://github.com/REDNBLACK")
)
),
credentials ++= Option(Path.userHome / ".config" / "sbt" / ".tethys-credentials")
.filter(_.exists())
.map(Credentials(_)),
publishMavenStyle := true,
publishTo := {
if (isSnapshot.value)
Expand Down

0 comments on commit 4f767e1

Please sign in to comment.