I am trying to use tags in cc.net to control release build. When I have the build machine build for development, I have it tag with a keyword - 'release'. Now I would like to have the production project build using the same repository tag to build.
Since the tag 'release' would resolve to the most recent version, it should build the repository at exactly the same place as the development build.
Here is what I am using for the development project:
<sourcecontrol type="hg">
<repo>//pdesql/SoftwareDevelopment/Repository/PBJ</repo>
<workingDirectory>C:\build\pbj-dev-deploy</workingDirectory>
<tagCommitMessage>release</tagCommitMessage>
<tagOnSuccess>true</tagOnSuccess>
</sourcecontrol>
<tagNameFormat>ccnet_build_{0}</tagNameFormat>setting, so what is being committed for the tag name? I didn't think you could have duplicate tags and therefore wouldn't be able to do this more than once. – Sumo Aug 18 '11 at 18:51