Skip to content

Commit 3063185

Browse files
fix gpg (#118)
* Update sbt-ci-release to 1.5.12 * Set version-scheme to early-semver * Remove useless setup-gpg since ubuntu already comes with mpg
1 parent efb8d95 commit 3063185

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/ci.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@ jobs:
1717
- uses: coursier/setup-action@v1
1818
with:
1919
jvm: zulu:8.0.402
20-
- uses: olafurpg/setup-gpg@v3
2120
- run: ./make.sh && ./publish.sh
2221
env:
2322
SBT_NATIVE_CLIENT: false

project/Settings.scala

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,7 @@ object Settings {
6969
javacOptions ++= javacOptionsVersion(scalaVersion.value),
7070
scalacOptions ++= scalacOptionsVersion(scalaVersion.value),
7171
Compile / doc / scalacOptions ++= scalaDocOptionsVersion(scalaVersion.value),
72+
versionScheme := Some("early-semver"),
7273
useCoursier := false,
7374
developers := List(
7475
Developer("amurgia", "Antonio Murgia", "antonio.murgia@agilelab.it", url("https://github.com/tmnd1991")),

project/plugin.sbt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
addSbtPlugin("org.scalastyle" %% "scalastyle-sbt-plugin" % "1.0.0")
2-
addSbtPlugin("com.geirsson" % "sbt-ci-release" % "1.5.3")
1+
addSbtPlugin("org.scalastyle" %% "scalastyle-sbt-plugin" % "1.0.0")
2+
addSbtPlugin("com.github.sbt" % "sbt-ci-release" % "1.5.12")

0 commit comments

Comments
 (0)