Home > Blockchain >  Fetch release number from a release pipeline
Fetch release number from a release pipeline

Time:01-03

I have been trying to access the Release number from a task in a release pipeline, because I need to create a git branch with an unique name, or even a counter would help (I tried $(Rev:rrr) as a counter, but it did not work).

$(Rev:rrr)

I need this number 95 from the picture below.

CodePudding user response:

create a git branch with an unique name

To create a git branch with an unique name in release pipeline, you could try with enter image description here

  • Related