我正在尝试使用 YAML 设置我的构建定义。我正在使用AppCenterDistribute 任务。它需要和端点到 MS App Center。我已经按照本教程设置了一个。
但是,我收到了该错误消息:
“步骤输入serverEndpoint引用了找不到的端点Appcenter。服务端点不存在或未被授权使用。”
尽管我已经确定我在正确的 VSTS 项目中,但这与这篇文章的问题完全相同。
可能是什么问题呢?我现在什至无法运行我的构建。
这是 YAML 部分:
变量:
APKName: 'com.project.this.apk'
- task: AppCenterDistribute@1
displayName: Deploy APK to App Center
inputs:
serverEndpoint: Appcenter
appSlug: 'Project/Learn'
appFile: '$(build.artifactstagingdirectory)\$(APKName)'
symbolsIncludeParentDirectory: false
releaseNotesInput: Notes
请注意,我在同一个 VSTS 项目中确实有一个普通的 VSTS Web 构建(名称略有不同),该项目构建并可以使用相同的端点分发到 App Center。
这是我提交 YAML 构建时的错误: