Reputation: 9616
Is there a URL path that bamboo UI exposes which allows you see browser the contents of the build dir ? All I can see is the url to logs but nothing for the build dir.
Upvotes: 0
Views: 431
Reputation: 1028
Not directly.
You can configure the directory as a job artifact, then it will show up in the UI in the artifacts tab. In this case the URL would be http://myserver/bamboo/browse/MYBUILD/latest/artifact
Alternatively, you can run ls
from within your build and see the contents in the build log. If not already so, you can add a script task to your job for the purpose.
Upvotes: 1