I'm trying to do a proof of concept to redesign my CI/CD pipelines in Azure Pipelines (formerly known as VSTS). My codebase is in BitBucket.
I need a continuous integration build to be triggered when I push git tags to the remote repo.
The proof of concept works really well when I use Azure Repos (VSTS), it detects a change in the "branch" "refs/tags/current" and triggers the build.
But once I switch to BitBucket, it just doesn't work, no build is triggered.
So my question is:
How can I trigger a CI build in Azure Pipelines (VSTS) when pushing tags to my BitBucket repo?
Thanks!