I have an ant task that creates my javadocs. How do I use TeamCity to publish them in the same place every time a build is run so that I have a fixed url to point people to?
I tried the following in the build artifacts but nothing happened and there was nothing in the log to suggest that anything had tried to happen. What is wrong with this?
These redirection rules are not related to agent's file system, but used to organize files on TeamCity server side.
At the moment TeamCity cannot publish artifacts to external location (TW-1558). But you can copy them as additional Ant task right within your build script.
I tried the following in the build artifacts but nothing happened and there was nothing in the log to suggest that anything had tried to happen.
What is wrong with this?
I am trying to copy the whole javadoc folder so it is availalable at http://1.1.1.1:8080/application/javadoc/index-all.html
Although I seem to be putting a full path in the pattern, it is still relative to the artifacts directory.
i.e. it ends up here:
Instead of here:
Can TeamCity put artifacts outside the .BuildServer directory?
Hi
These redirection rules are not related to agent's file system, but used to organize files on TeamCity server side.
At the moment TeamCity cannot publish artifacts to external location (TW-1558).
But you can copy them as additional Ant task right within your build script.
Michael