Reputation: 676
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.
Upvotes: 5
Views: 816
Reputation: 18034
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
Upvotes: 4