In Jenkins with Git Parameter plugin (which helps me filter out tags)
I have this pattern *-rc
this simply display all tags with -rc
as a suffix. But how do I negate this pattern. I already have this (?!-rc).*$
but it is not working.
EDIT 1
I have tags named:
3.11.2-rc
3.11.1-rc
3.11.0
3.10.0
so on and so fort...
with this pattern *-rc
I can simply display tags with '-rc'
now, what I want to achieve is display all tags without '-rc'
EDIT 2