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
What I'd like to have is to have an option to make the final task tag local repo, plus whatever else final is doing, but without pushing the tag to the remote.
release.useLastTag=true stops the push, but it skips the tagging as well, which is something I'd like to have.
The text was updated successfully, but these errors were encountered:
I found a hack, with git remote add origin . (. being the root of the git repo). This essentially points the remote origin back to local. With that, gradle final could do tagging without complaints.
Since it modifies the origin remote, I'd assume this would work only for local-only repos.
In any way, a switch from nebula release plugin is preferred.
What I'd like to have is to have an option to make the
final
task tag local repo, plus whatever elsefinal
is doing, but without pushing the tag to the remote.release.useLastTag=true
stops the push, but it skips the tagging as well, which is something I'd like to have.The text was updated successfully, but these errors were encountered: