Soy nuevo en el service de tuberías bitbucket y tengo problemas para implementar mi aplicación en heroku.
Mi file bitbucket-pipelines.yml está aquí:
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
La aplicación de creación falla con "bash: git: command no encontrado". ¿Esto significa que simplemente tengo que escribir script de installation de git antes de pasarlo a heroku?
Solo tuve que agregar
- apt-get update && apt-get install -y unzip git
antes de empujar el command