You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the event that two separate processes attempt to increment the version for a module at the same time, then the following exception is thrown in one of them.
FAILURE: Build failed with an exception.
What went wrong:
Execution failed for task ':module:release'.
pl.allegro.tech.build.axion.release.ReleaseFailedException (no error message)
Try:
Run with --stacktrace option to get the stack trace.
Run with --scan to get full insights.
Get more help at https://help.gradle.org/
This can be worked around by performing a git fetch --tags and then retrying the release task which, on the second attempt then concludes that there is nothing to be released as the other process has already tagged this commit successfully.
Presumably the issue here is a rejection by the git repository of the push. It would be good if such a rejection is encountered if the axion-release-plugin could automatically perform a fetch and re-attempt the push itself.
The text was updated successfully, but these errors were encountered:
In the event that two separate processes attempt to increment the version for a module at the same time, then the following exception is thrown in one of them.
This can be worked around by performing a
git fetch --tags
and then retrying the release task which, on the second attempt then concludes that there is nothing to be released as the other process has already tagged this commit successfully.Presumably the issue here is a rejection by the git repository of the push. It would be good if such a rejection is encountered if the axion-release-plugin could automatically perform a fetch and re-attempt the push itself.
The text was updated successfully, but these errors were encountered: