File tree Expand file tree Collapse file tree 2 files changed +15
-1
lines changed
Expand file tree Collapse file tree 2 files changed +15
-1
lines changed Original file line number Diff line number Diff line change 5252 SONATYPE_USERNAME : ${{ secrets.SONATYPE_USERNAME }}
5353 SONATYPE_PASSWORD : ${{ secrets.SONATYPE_PASSWORD }}
5454 SONATYPE_CREDENTIAL_HOST : ${{ secrets.SONATYPE_CREDENTIAL_HOST }}
55- run : sbt publishSigned
55+ run : sbt publishSigned sonatypeBundleRelease
Original file line number Diff line number Diff line change @@ -6,6 +6,20 @@ ThisBuild / scalaVersion := "3.3.4"
66ThisBuild / scalafmt := true
77ThisBuild / scalafmtSbtCheck := true
88ThisBuild / version ~= { v => if (v.contains('+' )) s " ${v.replace('+' , '-' )}-SNAPSHOT " else v }
9+ ThisBuild / scmInfo := Some (
10+ ScmInfo (
11+ url(" https://github.com/rolang/google-rest-api-codegen" ),
12+ " scm:git@github.com:rolang/google-rest-api-codegen.git"
13+ )
14+ )
15+ ThisBuild / developers := List (
16+ Developer (
17+ id = " rolang" ,
18+ name = " Roman Langolf" ,
19+ email = " rolang@pm.me" ,
20+ url = url(" https://rolang.dev" )
21+ )
22+ )
923
1024lazy val testSettings = Seq (
1125 Compile / scalacOptions ++= Seq (" -Xmax-inlines:64" ),
You can’t perform that action at this time.
0 commit comments