File tree Expand file tree Collapse file tree 2 files changed +10
-3
lines changed
Expand file tree Collapse file tree 2 files changed +10
-3
lines changed Original file line number Diff line number Diff line change 4545 - name : Publish library
4646 env :
4747 GITHUB_TOKEN : " ${{ secrets.GITHUB_TOKEN }}"
48- run : sbt publish
48+ run : sbt "+ publish"
Original file line number Diff line number Diff line change 1- ThisBuild / scalaVersion := " 2.13.3"
1+ import sbt .Keys .scalaVersion
2+
23ThisBuild / organization := " com.intenthq"
34ThisBuild / organizationName := " Intent HQ"
45
6+ lazy val scala212 = " 2.12.12"
7+ lazy val scala213 = " 2.13.3"
8+ lazy val supportedScalaVersions = List (scala213, scala212)
9+
510lazy val root = (project in file(" ." ))
611 .settings(
712 name := " scala-secret" ,
8- libraryDependencies += Dependencies .weaver
13+ libraryDependencies += Dependencies .weaver,
14+ scalaVersion := scala213,
15+ crossScalaVersions := supportedScalaVersions
916 )
1017
1118testFrameworks += new TestFramework (" weaver.framework.TestFramework" )
You can’t perform that action at this time.
0 commit comments