私は bitbucket パイプを使用して、heroku on app の 2 つのアプリにデプロイしようとしていますが、git リポジトリから master ブランチを受け取り、正常に実行され、問題なくデプロイされます。
問題は、「develop」というブランチから heroku の他のアプリにデプロイしようとすると、bitbucket のパイプ コンソールでこのエラー エラーが発生することです。
+ git push https://heroku:$HEROKU_API_KEY@git.heroku.com/$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:$HEROKU_API_KEY@git.heroku.com/$HEROKU_APP_NAME.git HEAD
branches:
develop:
- step:
script:
- npm install
- git push https://heroku:$HEROKU_API_KEY@git.heroku.com/$HEROKU_APP_NAME_DEV.git HEAD