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
The default release process pushes all tags (git push --tags) instead of just the tag that was created during the release.
This causes issues in our environment, because tags are regularly pruned in our remote and should not be reintroduced by pushing them again. Of course, ppl try to fetch --prune --prune-tags, but occasionally this is forgotten, and then obsolete tags are pushed again when performing a release.
What can be done to modify the release process so that it only pushes the tag that it created?
The text was updated successfully, but these errors were encountered:
The default release process pushes all tags (
git push --tags
) instead of just the tag that was created during the release.This causes issues in our environment, because tags are regularly pruned in our remote and should not be reintroduced by pushing them again. Of course, ppl try to
fetch --prune --prune-tags
, but occasionally this is forgotten, and then obsolete tags are pushed again when performing arelease
.What can be done to modify the release process so that it only pushes the tag that it created?
The text was updated successfully, but these errors were encountered: