Skip to content

Commit 55465a2

Browse files
committed
fix publish step
1 parent 5e1b310 commit 55465a2

File tree

2 files changed

+15
-1
lines changed

2 files changed

+15
-1
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,4 +52,4 @@ jobs:
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

build.sbt

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,20 @@ ThisBuild / scalaVersion := "3.3.4"
66
ThisBuild / scalafmt := true
77
ThisBuild / scalafmtSbtCheck := true
88
ThisBuild / 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

1024
lazy val testSettings = Seq(
1125
Compile / scalacOptions ++= Seq("-Xmax-inlines:64"),

0 commit comments

Comments
 (0)