【发布时间】:2020-01-13 00:10:46
【问题描述】:
我正在我们的 Azure DevOps 管道中创建一个自动分发到我们的 AppCenter,以自动发布到 Google Play 商店。
我们管道中的自动分发到 AppCenter 组的工作正常,如下所示:
- task: AppCenterDistribute@3
inputs:
serverEndpoint: 'AppCenter'
appSlug: 'mycompany/appname'
appFile: '**/android/bin/nl.mycompany.appname.apk'
symbolsOption: 'Android'
releaseNotesOption: 'input'
releaseNotesInput: 'some comment'
destinationType: 'groups'
distributionGroupId: '813c4695-5f9c-4b10-973e-7awdcsd6'
但我无法通过 AppCenter 分发到商店:
- task: AppCenterDistribute@3
inputs:
serverEndpoint: 'AppCenter'
appSlug: 'mycompany/appname'
appFile: '**/android/bin/nl.mycompany.appname.apk'
symbolsOption: 'Android'
releaseNotesOption: 'input'
releaseNotesInput: 'some comment'
destinationType: 'store'
destinationStoreId: 'Alpha'
这会返回:
错误:ID 为 Alpha 的分发存储不存在。
知道在 AppCenter 或其他地方的哪里可以找到 destinationStoreId 吗?
【问题讨论】:
标签: azure-devops yaml azure-pipelines google-play-console visual-studio-app-center