git 推送时 circleci 部署到 heroku 失败

circleci deployment to heroku failed on git push

我刚刚设置了一个新项目以从 circleci 部署到 heroku。我的构建脚本如下:

git push git@heroku.com:socialjusticebingo.git $CIRCLE_SHA1:refs/heads/master

在我的 circleci 构建的控制台中,我看到以下内容:

remote: Verifying deploy... done.
To git@heroku.com:socialjusticebingo.git
 ! [remote rejected] ca5c72a28f7ca9c793becd122e6bc73bf8f34b44 -> master (missing necessary objects)

显然这个问题与浅克隆有关。通过将我的部署脚本更改为如下内容,我能够解决这个问题:

git fetch origin --unshallow
git push git@heroku.com:socialjusticebingo.git $CIRCLE_SHA1:refs/heads/master