Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Comments in Team City Artifact Paths Field

Is it possible to add comments into the Artifact paths field in Team City? What format should I use? I'd like for the next guy to be able to quickly understand what is going on and why.

like image 630
Mike Pennington Avatar asked Oct 02 '22 05:10

Mike Pennington


1 Answers

You can use anything that doesn't match a file. It will show up as warning in the build log (matching artifacts not found), but do no harm otherwise.

I use a hash to start comments, for example:

# Collect all DLLs from unicorn
unicorn/**/*.dll
like image 144
theDmi Avatar answered Oct 13 '22 12:10

theDmi