Question regarding GitFlow Yaml Configuration for unique versions for tags, release branch, and develop #4238
-
We are looking to utilize gitversion in our CI pipelines to automatically calculate and build the code with versions that are unique based on GitFlow. We are tagging our production releases with "tags/{major.minor.patch}. main
features -- would inherit develop's version Hopefully this image uploads, as it gives a visual to the sequence diagram that describe the above. Can anyone help figure out the correct configuration for what is described above? thanks, |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
First of all, I would recommend you to take a look into the configuration document and the Seeing your sequence diagram, I think you can use the
Happy Branching! |
Beta Was this translation helpful? Give feedback.
-
Thank you for your reply. I have read the configuration multiple times, but for some reason I kept on "ignoring" the Once I added that to my current config it started working :-D thanks again! |
Beta Was this translation helpful? Give feedback.
First of all, I would recommend you to take a look into the configuration document and the
GitFlow
examples which are available at:Seeing your sequence diagram, I think you can use the
workflow: GitFlow/v1
template. You just need to adjust the following:tags\/
devleop
branch fromMinor
toPatch
devleop
branch fromalpha
toSNAPSHOT
release
branch frombeta
toSNAPSHOT
ManualDeployment
toContinuousDelivery
Happy Branching!