使用 Git-LFS Azure DevOps Pipeline 进行身份验证失败

And*_*all 5 git-lfs azure-devops azure-pipelines

我在尝试在 Azure Devops Pipeline 中签出具有 git-lfs 支持的存储库时遇到以下身份验证失败:

##[command]git -c http.<url>="AUTHORIZATION: bearer ***" lfs fetch origin 8d51d72484c1b19a2427ed9f7736d410e43a8a29
fetch: Fetching reference 8d51d72484c1b19a2427ed9f7736d410e43a8a29
fatal: could not read Password for '<url>': terminal prompts disabled
batch response: Git credentials for <url> not found.
error: failed to fetch some objects from '<url>/info/lfs'
##[warning]Git lfs fetch failed with exit code 2, back off 5.476 seconds before retry.
Run Code Online (Sandbox Code Playgroud)

该存储库也托管在 Azure DevOps 上,管道配置如下:

jobs:
...
  steps:
  - checkout: self
    lfs: true
    persistCredentials: true
Run Code Online (Sandbox Code Playgroud)

它在未启用 lfs 的情况下成功,但仅下载文件指针。它需要什么凭据,我如何提供它们?