Jenkins supports parametrized builds.
I have a deployment build that requires the tag to deploy to be specified via a parameter. (to deploy a particular tag to production)
Is there an easy way to do this with the git plugin?
I tried adding a parameter TAG_NAME, and then setting branch_specifier in the git plugin section of the job to $TAG_NAME. Dosen't work. I get:
ERROR: Couldn't find any revision to build. Verify the repository and branch configuration for this job.
Any ideas?