Enabling Bitbucket Pipelines
After all your changes have been approved and merged into a develop branch, they need to be built and deployed. Deploying your changes is important because your source code needs to eventually live in an environment where end users will be able to use the functionalities that you have built. You could manually copy files from your computer to another, but this is not scalable and will most likely not be possible given the distributed world we live in. Instead, you can leverage the power of Bitbucket Pipelines to deploy your code automatically.
How to do it…
Before you can use Bitbucket Pipelines, you will need to tweak a few things:
- In Bitbucket, enter the repository in which you want to create a branch. Click on Repositories in the navigation bar.
Figure 5.35 – Select Repositories from the menu bar
- Select the repository you want to create your branch in.
Figure...