I am new to artifactory, and have managed to get my artifacts uploaded, using the following filespec:
{
"files": [
{
"target": "generic-local/MyAppName/${bamboo.BUILD_MAJOR}.${bamboo.BUILD_MINOR}.${bamboo.BUILD_STREAM}.${bamboo.buildNumber}/",
"pattern": "Output/Release/*.*"
}
]
}
This appears to work, I have a project folder, with a folder for each version below it, and the artifacts within.
How can I write an unrelated download task to get the latest build artifacts? By unrelated, I mean no knowledge of the build counters.
Thanks.