内联脚本中的Azure Powershell提及文件路径

时间:2019-09-01 15:11:22

标签: azure azure-devops

我想使用Azure Powershell内联脚本将文件上传到API管理。我无法在Powershell脚本中找到一种方法来提及Artifact的文件路径。

期望使用Azure Powershell,该Azure Powershell使用AzureRM服务连接来访问API管理服务并按如下方式上传swagger文件

Import-AzureRmApiManagementApi -Context $ ApiMgmtContext -SpecificationFormat“ Swagger” -SpecificationPath“ My_Azuredevops_repo_path_to_file” -Path“ apis

enter image description here

enter image description here

1 个答案:

答案 0 :(得分:0)

看起来像这里的路径可以通过利用these变量之一来提及。请检查链接并提及适当的变量。

AFAIK(如果它是下载源代码文件的代理上的本地路径),则可能需要具有变量$(Build.SourcesDirectory)/ $(Build.Repository.LocalPath)/ $(System.DefaultWorkingDirectory)

希望这会有所帮助!