Reputation: 83
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:[email protected]/$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?
Upvotes: 2
Views: 2161
Reputation: 83
Just had to add
- apt-get update && apt-get install -y unzip git
before pushing command
Upvotes: 2