Is there any way to make jenkins checkout and build a certain tag (parameterized builds
?)
I'm currently building the development (master branch) and right after tag a version (using maven:release
)
some information (as suggested by Vonc)
Env is win7, latest git, latest jenkins (updated yesterday) .
I've tried placing the tag name in the Branch Specifier
but without luck (either it fails or checking out the master
branch).
from jenkins log:
Fetching changes from 1 remote Git repository Fetching upstream changes from [email protected]:${myorgname}/${myorgname}.git
I'm guessing the question is really - where (if any) do I tell jenkins - "hi, don't checkout master branch, just checkout the tag".
Is there a place I can configure the git command myself? (e.g - git fetch my_tag
)