I added webhook to bitbuck according to the instruction http://devcenter.bitrise.io/webhooks/adding-a-bitbucket-webhook/
and the workflow:
---
format_version: '4'
default_step_lib_source: https://github.com/bitrise-io/bitrise-steplib.git
project_type: ios
trigger_map:
- push_branch: master
workflow: testflight_production
- push_branch: dev
workflow: testflight_staging
- push_branch: thi/*
workflow: develop
- push_branch: fixbug/*
workflow: develop
- tag: "*"
workflow: adhoc
workflows:
...
The push trigger is working well but tag is not. What have I missed?