sbt-release
sbt-release copied to clipboard
interactive commit
Allow the user to commit from the SBT shell:
> release with-defaults
[info] Working directory is dirty:
[info]
[info] ?? project-a/
Enter a message to add everything and commit: bla bla bla
This feature can be disabled with the interactiveCommit attribute
This issue is still not fixed
Add: Imo this issue is critical to be fixed as this will break anyone who is using SBT in continuous delivery pipeline.
Add: So it turns out if you open sbt console and run:
release with-defaults
works great
if you run "sbt release with defaults" will fail.
You will need to run with:
sbt "release with-defaults" #this works