git push heroku master says “Everything up-to-date”, but the app is not current

前端 未结 13 1373
孤独总比滥情好
孤独总比滥情好 2020-12-02 09:00

I have an app on Heroku that is running old code. I\'ve made a small change and committed the change. I then ran

git push heroku master

I

相关标签:
13条回答
  • 2020-12-02 09:26

    If you're using Java, don't forget to rebuild the project before pushing.

    In case of Gradle:

    gradlew clean install
    
    0 讨论(0)
提交回复
热议问题