-
Notifications
You must be signed in to change notification settings - Fork 9
Open
Labels
Description
There are files in a repository, like docs, that should not affect the compilation of the project and therefore publish a new artifact (the artifact will be the same as the one previously released).
I would like sbt-release-early to allow me to define the whitelisted files in my build in the following way:
releaseEarlyWhitelistedFiles in Global := List("README.md", "CONTRIBUTING.md", ...)When I commit this setting implementation, the releaseEarly would not trigger the publish task if only those files have been modified. If there's a change in any other file, it will publish an artifact as expected.
The implementation of this feature cannot assume that the previous commit has been released, and therefore we need to get the modified files since the last published commit (contrary to the last commit, i.e. HEAD~1).
Reactions are currently unavailable