Skip to content

Commit 2aef7cd

Browse files
committed
chore: 🤖 fix release workflow by not doing git operations from sbt-releas
1 parent 4c6d941 commit 2aef7cd

File tree

1 file changed

+8
-6
lines changed

1 file changed

+8
-6
lines changed

‎build.sbt

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -154,12 +154,14 @@ releaseProcess := Seq[ReleaseStep](
154154
inquireVersions,
155155
runClean,
156156
runTest,
157-
setReleaseVersion,
158-
commitReleaseVersion,
159-
tagRelease,
157+
// the 3 following steps are part of the Cucumber release process
158+
//setReleaseVersion,
159+
//commitReleaseVersion,
160+
//tagRelease,
160161
releaseStepCommandAndRemaining("publishSigned"),
161162
releaseStepCommand("sonatypeBundleRelease"),
162-
setNextVersion,
163-
commitNextVersion,
164-
pushChanges
163+
// the 3 following steps are part of the Cucumber release process
164+
//setNextVersion,
165+
//commitNextVersion,
166+
//pushChanges
165167
)

0 commit comments

Comments
 (0)