如何在bitbucket中创建两个管道?

时间:2018-07-03 05:41:56

标签: git heroku bitbucket bitbucket-pipelines

我在Heroku中有两个应用程序。一个是阶段,另一个是生产。当前在我的BitBucket中,主分支将部署到Heroku中的生产服务器。我希望将我的登台分支部署到Heroku中的登台服务器。

这是我用于生产的bitbucket-pipelines.yml

image: node:6
clone:
  depth: full
pipelines:
  branches:
    master:
        - step:
            script:
              - npm install
              - npm test
              - git config --global user.email "abc@abc.com"
              - git config --global user.name "abc@abc.com"
              - git push https://heroku:$HEROKU_API_KEY@git.heroku.com/$HEROKU_APP_NAME_PRODUCTION.git HEAD 

我如何创建另一个用于执行转移到暂存服务器的暂存分支的bitbucket-pipelines.yml?

1 个答案:

答案 0 :(得分:0)

您应该在所有分支机构中拥有相同的bitbucket-pipelines.yml文件。配置中的规则将确定执行什么管道。

您可以具有这样的配置,该配置将在master分支更改时部署到master,同样在staging分支更改时部署到staging。

image: node:6
clone:
  depth: full
pipelines:
  branches:
    master: # Only runs when master branch is changed. Deploys to production.
        - step:
            script:
              - npm install
              - npm test
              - git config --global user.email "abc@abc.com"
              - git config --global user.name "abc@abc.com"
              - git push https://heroku:$HEROKU_API_KEY@git.heroku.com/$HEROKU_APP_NAME_PRODUCTION.git HEAD
    staging: # Only runs when staging branch is changed. Deploys to staging.
        - step:
            script:
              - npm install
              - npm test
              - git config --global user.email "abc@abc.com"
              - git config --global user.name "abc@abc.com"
              - git push https://heroku:$HEROKU_API_KEY@git.heroku.com/$HEROKU_APP_NAME_STAGING.git HEAD