0
我試圖使用bitbucket管道來部署兩個應用程序在heroku上的應用程序收到主分支從git回購,這是運行良好,部署沒有問題。使用bitbucket管道部署到非主分支
問題是,當我嘗試從一個叫分支部署「發展」到其他應用中的Heroku我得到管控制檯上的錯誤錯誤到位桶
+ git push https://heroku:[email protected]/$HEROKU_APP_NAME_DEV.git HEAD
remote: Pushed to non-master branch, skipping build.
這裏是我的bitbucket- pipes.yml
pipelines:
default:
- step:
script: # Modify the commands below to build your repository.
- npm install
- git push https://heroku:[email protected]/$HEROKU_APP_NAME.git HEAD
branches:
develop:
- step:
script:
- npm install
- git push https://heroku:[email protected]/$HEROKU_APP_NAME_DEV.git HEAD