-
-
Notifications
You must be signed in to change notification settings - Fork 5.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Cant delete a realease without deleting a tag #378
Comments
@tboerger more of a feature/enhancement right? |
I'd say 90% Feature, 10% Bug. The bug element is that, it seems wrong to be left with no tag after the following:
That is to say that creating and deleting a release shouldn't delete a pre-existing tag. I'm sure there are some who would argue "working as designed" though. |
@bkcsoft bug and feature at the same time, at least in my opinion. |
A release is bound to a tag, but a tag can also totally fine exist without a release |
So we can simply don't delete the tag when deleting a release! Tags could be delete via git or Gitea API, so that we could not provide ui to delete it currently. |
There is a strong connection between tags and releases in Gitea. When you create a release gitea also creates a tag if the tag name doesn't already exist. When you delete a release it also deletes the tag.
This has two main flaws:
Suggested enhancements to resolve this:
The text was updated successfully, but these errors were encountered: