I would like to deploy my application as a container from Gitlab CI/CD pipeline.
A few days ago I could deploy my docker image as written in the heroku devCenter.
docker login --username=_ --password=$(heroku auth:token) registry.heroku.com
and pushed it to the heroku registry.
docker tag imageregistry.heroku.com/app/process-type
docker push registry.heroku.com/app/process-type
But then they changed the deploy in 2 steps
heroku cointainer:push
heroku container:release
Before the update it was deployed when the container was pushed into the container registry. Now I need to release it in any way.
I tried to rename the image to release and tried to install heroku CLI but then I cannot log into heroku registry.
How did you solve it?