如何根据 circleCI 上的分支继续构建不同的东西?你能帮我把这个 bitbucket-pipelines.yml 翻译成 circleCI.yml 吗?
image: atlassian/default-image:2
pipelines:
default:
- step:
script:
- ant -buildfile build/build.xml banner
branches:
master:
- step:
script:
- Deploy to PRO
develop:
- step:
script:
- echo "Deploy to sandbox"