im using DownloadBuildArtifacts@0 and i like to download all the *.ipa files and also the manifest.plist
file .
when writing : itemPattern: '**/*.ipa
it downloading me the ipa file
but when i do :
- job: copy_back_files_to_self_hosted_connect
dependsOn: mac_agent
timeoutInMinutes: 10
pool: Default
steps:
- task: DownloadBuildArtifacts@0
inputs:
buildType: 'current'
downloadType: 'single'
artifactName: 'Artifacts'
itemPattern: '**/*.ipa|manifest.plist'
downloadPath: '$(System.ArtifactsDirectory)'
- task: CopyFiles@2
inputs:
SourceFolder: '$(System.ArtifactsDirectory)'
Contents: '**/*.ipa|manifest.plist'
TargetFolder: '$(Agent.HomeDirectory)/../${{parameters.FolderCompile}}'
it downloaded me none of the files not ipa and not the manifest.plist
what is the right pattern to download both all the time ?