I would need to checkout the latest SVN tag to my Jenkins build job workspace. With tag I mean the copied folder, often used to create milestones.
I read from some stackoverflow question that one could get the latest e.g. with
"svn ls .../path/to/repo/tags | tail -n 1"
, but I don't think this can be given to Jenkins SCM field. I believe Jenkins requires the exact location in SVN. Any ideas? I would believe this is actually quite a common requirement in large projects....