I'm using the semantic-release package which runs on my CI to release my library onto npm through my Github repo.
Recently, I have a breaking change that I have forgotten to add the breaking change
text into my commit message before merging. So semantic-release made a minor release and published it onto npm instead of a major release.
Can I simply remove the wrong release created by semantic-release on Github to unpublish it?
How can I undo and unpublish the wrong minor release on Github and npm, and get semantic-release to re-release the recent commit I've made as a major release without messing up my repo?