1
votes

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.

1

1 Answers

1
votes

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.