When using ArtifactoryGenericDownload@3 in AzureDevops YML pipelines, I receive the error: Endpoint not present: undefined, even though my service connection is correctly configured. The JFrog / Aritfactory Documentation doesn't seem to mention examples of the usage of ArtifactoryGenericDownload at all, are there any examples of how to use and configure.
My current pipeline setup looks like this:
stages:
- stage:
jobs:
- job:
steps:
- task: ArtifactoryGenericDownload@3
inputs:
artifactoryService: 'service-connection'
filePattern: ${{parameters.filePattern}}
downloadPath: '$(Pipeline.Workspace)'
flatDownload: true