Bitbucket pipelines issues with git commands

99封情书 提交于 2019-12-24 03:07:07

问题


I am new to bitbucket pipelines service and I have problems with deploying my app to heroku.

My bitbucket-pipelines.yml file is here:

image: php:5.6.31
clone: 
 depth: fullpipelines: 
default: 
 - step: 
  script: 
   - php -v  
   - git push https://heroku:$HEROKU_API_KEY@git.heroku.com/$HEROKU_APP_NAME.git HEAD

Building app fails with "bash: git: command not found". Does this mean that I have to simply write git-installing script before pushing it to heroku?


回答1:


Just had to add

 - apt-get update && apt-get install -y unzip git

before pushing command



来源:https://stackoverflow.com/questions/46632283/bitbucket-pipelines-issues-with-git-commands

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!