Recompile Heroku slug without push or config change

后端 未结 8 530
無奈伤痛
無奈伤痛 2020-12-02 04:55

I\'m wondering if there is a way to force Heroku to recompile the slug without pushing new commits and/or updating the config variables.

Why would I want to do this?

8条回答
  •  忘掉有多难
    2020-12-02 05:36

    The simplest workaround for now is to push an empty commit.

    git commit --allow-empty -m "empty commit"
    git push heroku master
    

提交回复
热议问题