Skip to content

Commit 5370015

Browse files
committed
upgrade ci plugin
1 parent 908cd3d commit 5370015

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,6 @@ jobs:
7979
strategy:
8080
matrix:
8181
os: [ubuntu-latest]
82-
scala: [3.3.0]
8382
java: [zulu@8]
8483
runs-on: ${{ matrix.os }}
8584
steps:
@@ -99,7 +98,7 @@ jobs:
9998

10099
- name: sbt update
101100
if: matrix.java == 'zulu@8' && steps.setup-java-zulu-8.outputs.cache-hit == 'false'
102-
run: sbt '++ ${{ matrix.scala }}' reload +update
101+
run: sbt reload +update
103102

104103
- name: Download target directories (3)
105104
uses: actions/download-artifact@v3
@@ -117,4 +116,4 @@ jobs:
117116
SONATYPE_PASSWORD: ${{ secrets.SONATYPE_PASSWORD }}
118117
SONATYPE_USERNAME: ${{ secrets.SONATYPE_USERNAME }}
119118
PGP_SECRET: ${{ secrets.PGP_SECRET }}
120-
run: sbt '++ ${{ matrix.scala }}' ci-release
119+
run: sbt ci-release

build.sbt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,7 @@ pomExtra := {
5252

5353
MetaInfLicenseCopy.settings
5454

55+
ThisBuild / tlSonatypeUseLegacyHost := true
5556
ThisBuild / githubWorkflowJavaVersions := Seq(JavaSpec(Zulu, "8"))
5657
ThisBuild / githubWorkflowPublishTargetBranches := Seq(
5758
RefPredicate.Equals(Ref.Branch("main")),

project/plugins.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,6 @@ addSbtPlugin("com.github.sbt" % "sbt-pgp" % "2.1.2")
44

55
addSbtPlugin("org.scoverage" % "sbt-scoverage" % "2.0.8")
66

7-
addSbtPlugin("org.typelevel" % "sbt-typelevel-sonatype-ci-release" % "0.5.0-M10")
7+
addSbtPlugin("org.typelevel" % "sbt-typelevel-sonatype-ci-release" % "0.5.0-RC2")
88

99
addSbtPlugin("com.github.sbt" % "sbt-ci-release" % "1.5.12")

0 commit comments

Comments
 (0)