Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Reset Version Tags Heroku

Tags:

git

heroku

Right now on Heroku my app is v62, I just put it into private beta, so it should theoretically be v0, is there any way I can reset the version tag on heroku?

like image 857
OneChillDude Avatar asked Mar 05 '26 00:03

OneChillDude


1 Answers

I think you are talking about the release tag that Heroku applies whenever you deploy or make addon changes to your application? Heroku manage this so you can perform rollbacks etc it's not something that you can reset. If you want to manage versions I would suggest using a true git tag and then deploying the tagged version to Heroku and keeping reference of what is tagged.

like image 72
John Beynon Avatar answered Mar 06 '26 15:03

John Beynon