axion-release-plugin
axion-release-plugin copied to clipboard
Gradle release & version management plugin.
When pushing a new tag, it's nice to see a short description added along with the tag. Even if it is just relaying the commit message that would be awesome....
``` * What went wrong: Execution failed for task ':release'. > org.eclipse.jgit.api.errors.TransportException: [email protected]/xx.git: invalid privatekey: [B@52771620 ``` looks like the issue might be related to: https://bugs.eclipse.org/bugs/show_bug.cgi?id=520927 - I'm using ed25519...
I have the following configuration in my build.gradle file: ``` scmVersion { useHighestVersion = true //Uncomment if you do not want push to remote //localOnly = true tag { prefix...
Hello! We have used the plugin for some time with success, however had many issues with **git tags** when two developers were creating two feature branches from master and then...
Originally reported in: https://github.com/allegro/axion-release-plugin/issues/391#issuecomment-811393047 Given following config ```groovy scmVersion { versionIncrementer = PredefinedVersionIncrementer.versionIncrementerFor('incrementMinorIfNotOnRelease') releaseBranchPattern = Pattern.compile('^random(/.*)?$') } ``` and according to the documentation >If incrementMinorIfNotOnRelease rule is activated then the...
I'm not sure what's going on but I cannot get the current version to display anything but a SNAPSHOT. Even if I tag the current commit and then run the...
I would like to consider the trailers in the commit message of the HEAD commit in my `versionCreator` lambda.
Hi! Sorry if this is not the right place to ask questions but I couldn't find a better one. I wanted to centralize the Axion configuration and have my Jenkins...
Hi, I'm currently trying to modify and delete files in post release hooks. Modifications and additions are committed and pushed successfully. Files are deleted but I cannot manage to commit...
I would like to use Git worktrees to work on two tasks in parallel (e.g. one worktree for my primary work, second worktree for emergency fixes). Unfortunately there are a...