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
I'm trying to make continuous deployment to Heroku, but when my Strider app run the task "Deploy", it fails...
deploy:
git push -f https://git.heroku.com/app.git staging:master heroku
fatal: could not read Username for 'https://git.heroku.com': No such device or address
The strider-heroku plugin are up to date, and the client panel are correctly configured ,as expected.
The Strider is running at the Heroku too. I already registered every SSH Keys and registered API Clients correctly.
Does anyone know what can this be?
The text was updated successfully, but these errors were encountered:
I had this issue as well. The problem is that the git_url is set to use http instead of ssh which I'm guessing the default is now. Until there is a code fix, you can change the property in mongodb. The property is in the projects collection project.branches.plugins[id="heroku"].config.app.git_url .
The value could be something like [email protected]:app.git (that's what worked for me)
Mhhh
Well, I tried use SSH url, but my VM couldn't find the ssh keys to log-in.
So I solved this issue adding the .netrc file at my project root
The .netrc file is a credentials files, so, this option is not good because this file will have heroku API key inside with user email:
I'm trying to make continuous deployment to Heroku, but when my Strider app run the task "Deploy", it fails...
The strider-heroku plugin are up to date, and the client panel are correctly configured ,as expected.
The Strider is running at the Heroku too. I already registered every SSH Keys and registered API Clients correctly.
Does anyone know what can this be?
The text was updated successfully, but these errors were encountered: