Home > Mobile >  Why doesn't the code on Heroku get updated after updating the code on GitHub?
Why doesn't the code on Heroku get updated after updating the code on GitHub?

Time:05-20

I'm making a simple TODO app and want to upload it to HEROKU. But after I updated the code on Github, heroku code remained the same. I've tried enter image description here

Code on github here. As you can see console.log() on site has not disappeared

Heroku site

I even tried to re-create the app on Heroku but it didn't work.

CodePudding user response:

Heroku's GitHub integration has been disabled for over a month as part of a security response. It appears that it will remain disabled for another week or so:

Based on current progress, we plan to complete our investigation by May 30, 2022

We know you are waiting for us to re-enable our integration with GitHub, and we've committed to you that we will only do so following a security review. We will post more information to status.heroku.com when it is available.

You should have received emails about this from Salesforce (Heroku's parent company) on or around April 15 and May 4, 2022.

At the moment, your only option is to deploy using some other method. See this question for more details. The answers there suggest some alternative ways to deploy your code.

(Your Heroku password was also forcefully reset; if you have not yet changed it you'll need to do that when you log back in.)

  • Related