Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

TeamCity artifact paths combine folders

I need to create zip archive artifact which contains two folders. I know how to create one folder archive:

Folder1 => myartifact.zip

But how can I tell TeamCity to add Folder2 to same archive?

like image 410
SiberianGuy Avatar asked Dec 09 '22 23:12

SiberianGuy


1 Answers

The same target_archive name can be used multiple times, for example:

*/.html => report.zip
*/.css => report.zip!/css/

See also: http://confluence.jetbrains.net/display/TCD7/Configuring+General+Settings#ConfiguringGeneralSettings-artifactPaths

like image 115
Pavel Sher Avatar answered Mar 19 '23 17:03

Pavel Sher