Is it possible to permanently update the value of a build parameter as a result of a custom run?
For example, consider a build which is configured to have the build number format: %Major%.%Minor%.%Patch%.%build.counter%
Major, Minor and Patch and defined in the build configuration to have certain values. For the sake of an example, lets say this gives a build number of 3.1.2.36.
It is possible to change the build number by clicking '...' next to run and then changing the value of one of the params. Changing Minor from 1->2 and patch from 2->0 would give the next build the number 3.2.0.37.
I'm not overly concerned that 37 hasn't be reset to 0, but the problem is that the next build which is triggered (not as a result of a custom run) will have the build number 3.1.2.38 which is a lower number. Is it possible that when you run a custom build and change the numbers that the new values are persisted?
I am looking for a way that users with no TeamCity admin rights can cause the version number to be incremented according to the changes they have made.
We are running v8.1.2 (build 29993).