Skip to content

Commit a91fddc

Browse files
committed
re-enable sbt plugins
1 parent 83af498 commit a91fddc

File tree

3 files changed

+6
-8
lines changed

3 files changed

+6
-8
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -51,8 +51,8 @@ jobs:
5151
- name: Setup sbt
5252
uses: sbt/setup-sbt@v1
5353

54-
#- name: Check that workflows are up to date
55-
# run: sbt -J-Xmx2G '++ ${{ matrix.scala }}' githubWorkflowCheck
54+
- name: Check that workflows are up to date
55+
run: sbt -J-Xmx2G '++ ${{ matrix.scala }}' githubWorkflowCheck
5656

5757
- name: Build project
5858
run: sbt -J-Xmx2G '++ ${{ matrix.scala }}' test
@@ -137,4 +137,4 @@ jobs:
137137
SONATYPE_PASSWORD: ${{ secrets.CENTRAL_DEPLOY_PASSWORD }}
138138
SONATYPE_USERNAME: ${{ secrets.CENTRAL_DEPLOY_USERNAME }}
139139
PGP_SECRET: ${{ secrets.PGP_SECRET }}
140-
run: sbt -J-Xmx2G +publish
140+
run: sbt -J-Xmx2G ci-release

build.sbt

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// import sbtghactions.JavaSpec.Distribution.Zulu
1+
import sbtghactions.JavaSpec.Distribution.Zulu
22
import com.github.sbt.sbom._
33
import xerial.sbt.Sonatype.sonatypeCentralHost
44

@@ -123,7 +123,6 @@ Compile / resourceGenerators += Def.task {
123123

124124
Test / parallelExecution := false
125125

126-
/*
127126
ThisBuild / githubWorkflowSbtCommand := "sbt -J-Xmx2G"
128127
ThisBuild / githubWorkflowJavaVersions := Seq(JavaSpec(Zulu, "17"), JavaSpec(Zulu, "21"))
129128
ThisBuild / githubWorkflowTargetBranches := Seq("3.x")
@@ -146,7 +145,6 @@ ThisBuild / githubWorkflowPublish := Seq(
146145
)
147146
)
148147
)
149-
*/
150148

151149
enablePlugins(ReproducibleBuildsPlugin)
152150
// site

project/plugins.sbt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,13 @@ addSbtPlugin("com.typesafe.sbt" % "sbt-site" % "1.4.0")
88

99
addSbtPlugin("com.typesafe" % "sbt-mima-plugin" % "1.1.4")
1010

11-
// addSbtPlugin("com.github.sbt" % "sbt-github-actions" % "0.25.0")
11+
addSbtPlugin("com.github.sbt" % "sbt-github-actions" % "0.25.0")
1212

1313
addSbtPlugin("com.github.sbt" % "sbt-pgp" % "2.3.1")
1414
addSbtPlugin("com.github.sbt" % "sbt-git" % "2.1.0")
1515
addSbtPlugin("com.github.sbt" % "sbt-dynver" % "5.1.0")
1616
addSbtPlugin("org.xerial.sbt" % "sbt-sonatype" % "3.12.2")
17-
// addSbtPlugin("com.github.sbt" % "sbt-ci-release" % "1.11.0-RC3")
17+
addSbtPlugin("com.github.sbt" % "sbt-ci-release" % "1.11.0")
1818

1919
addSbtPlugin("net.bzzt" % "sbt-reproducible-builds" % "0.32")
2020

0 commit comments

Comments
 (0)