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
i had this exact error, my latest release was v1 with a tag exactly that. and I had 2 other tags v0.1.0-string and another like it, from earlier commits/releases that I had done manually
on a hunch because of next-version (**semver-bump** current-version bump-version-scheme), i went and added a semver compatible tag on the same commit that was my "latest' release.
it tag -a v1.0.0.0 <commit hash of "latest" release tag> -m "for semver"
and then I re-ran my workflow with the "re-run failed jobs" button and it was successful with the bump set to minor.
I got a release of v1.1.0 with all the trimmings. so delightful!
with:
bump_version_scheme: minor
tag_prefix: v
use_github_release_notes: true
release_name: "Release <RELEASE_TAG>"
release_body: "Bug fixes and features for stability of the application."
these are the with options I'm using, nothing really special...
The text was updated successfully, but these errors were encountered: