Reputation: 3484
Any ideas on how to publish teamcity artifacts while build is in progress using ANT. I use ANT as build runner in teamcity. Build interaction It says use it as ##teamcity[publishArtifacts '']. Any ideas on how it works in ANT scripts.
Upvotes: 1
Views: 1225
Reputation: 3484
The artifact can be publish at run time by following command:
<echo message="##teamcity[publishArtifacts '${checkOutDir}/package/']"/>
${checkOutDir}/package/ is the folder which the required artifacts to be published to teamcity.
Upvotes: 1