简体   繁体   English

用于 Power 应用程序的 Azure DevOps

[英]Azure Devops for Power apps

I am trying to implement devops for Powerapps by referring below link.我正在尝试通过参考以下链接为 Powerapps 实现 devops。 In manual deployment, usually we will export the app and import on another app by updating it.在手动部署中,通常我们会通过更新导出应用程序并导入另一个应用程序。 And then we publish it.然后我们发布它。

https://docs.microsoft.com/en-us/powerapps/developer/common-data-service/build-tools-overview https://docs.microsoft.com/en-us/powerapps/developer/common-data-service/build-tools-overview

But when I add task for import and export, I am getting the error as但是当我添加导入和导出任务时,我收到错误

"##[error]Cannot bind argument to parameter 'String' because it is an empty string." “##[错误]无法将参数绑定到参数 'String',因为它是一个空字符串。”

Anyone please help me to solve this issue.任何人都请帮我解决这个问题。

Thanks.谢谢。

"##[error]Cannot bind argument to parameter 'String' because it is an empty string." “##[错误]无法将参数绑定到参数 'String',因为它是一个空字符串。”

I saw you shared a debug log in our official community.我看到你在我们的官方社区分享了一个调试日志。

After analyze it and decompile the dlls that this task used, I found the issue you faced caused by the compile process has a process Get-Organizations to detect your powerapp organization name .在分析并反编译此任务使用的 dll 后,我发现您遇到的由编译过程引起的问题有一个进程Get-Organizations来检测您的powerapp 组织名称 But, the url you specified in the service connection is https://xxxx.powerapps.com/ which does not contain the organization name.但是,您在服务连接中指定的 url 是https://xxxx.powerapps.com/ ,其中不包含组织名称。

The correct format should be https://{org name}.crm.dynamics.com .正确的格式应该是https://{org name}.crm.dynamics.com You can check this doc to discover the URL for your organization .您可以查看此文档以发现您组织的 URL

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM