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
My use case, I have some versioned source code that can be compiled into a binary. The binary is added to a dist folder on the same repo (may be an anti-pattern...)
Steps as I have it configured now:
(bump2version) Bump version of the code, commit [+ tag]
build the binary, replace the old binary
commit binary file
push and push tags
The problem is that the binary commit happens after the tag.
What I would need:
(bump2version) Bump version of the code, commit [no tag]
build the binary, replace the old binary
commit binary file
tag with the bumped version
push and push tags
I can of course script myself the new step 4, but I was wondering if I have missed some option of bump2version that allows for this, basically create the tag without bumping the version
The text was updated successfully, but these errors were encountered:
My use case, I have some versioned source code that can be compiled into a binary. The binary is added to a dist folder on the same repo (may be an anti-pattern...)
Steps as I have it configured now:
The problem is that the binary commit happens after the tag.
What I would need:
I can of course script myself the new step 4, but I was wondering if I have missed some option of bump2version that allows for this, basically create the tag without bumping the version
The text was updated successfully, but these errors were encountered: