In my azure yml trigger I have:
trigger:
branches:
include:
- refs/tags/v*
tags:
include: ['*']
It won't trigger the pipeline on any tag at all, even without the v.
I'm also commiting a small change when testing to make sure that it's not just the YML that's different from the previous deployment.
My code is in an organisation's private github repo and does trigger on branches, but not on tags.
tags
putinclude:
(new line)- v*
– Shayki Abramczyk