在构建结束时,Codeship会自动推送到Heroku。我想用我自己的git push来覆盖这个推送。我怎样才能阻止这些界限的发生:
git remote add my-app git@heroku.com:my-app.git
git push heroku_my-app $CI_COMMIT_ID:refs/heads/master
我想做的是用我自己的git push替换Codeship的自动git push:
git add my-artifact.js
git commit -am "commited"
git remote add heroku git@heroku.com:my-app.git
git push -f heroku master
Codeship表示可以选择"configure the Heroku deployment to force push"
答案 0 :(得分:0)
您可以执行以下操作