我是bitbucket管道服务的新手,我在将我的应用程序部署到heroku时遇到了问题。
我的bitbucket-pipelines.yml文件在这里:
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
使用" bash:git:command not found"来构建应用程序失败。这是否意味着我必须在将它推送到heroku之前简单地编写git-installed脚本?
答案 0 :(得分:2)
只需添加
- apt-get update && apt-get install -y unzip git
在按下命令之前