在 Azure Devops 中部署发布管道时出错
Error while deploying release pipeline in Azure Devops
我正在尝试通过创建构建和发布管道来使用 Azure Devops 部署现有的 .Net Core 应用程序。构建管道工作正常,但是当 运行 发布管道(在 Deploy Azure App Service 下)时出现以下错误。
Error: No package found with specified pattern: D:\a\r1\a***.zip
Check if the package mentioned in the task is published as an artifact in the build or a previous stage and downloaded in the current job.
应该如何解决这个问题?
这个错误是因为没有配置构建任务。您可以尝试将下面的 YAML 代码放在最后使其生效。
- task: PublishBuildArtifacts@1
我正在尝试通过创建构建和发布管道来使用 Azure Devops 部署现有的 .Net Core 应用程序。构建管道工作正常,但是当 运行 发布管道(在 Deploy Azure App Service 下)时出现以下错误。
Error: No package found with specified pattern: D:\a\r1\a***.zip
Check if the package mentioned in the task is published as an artifact in the build or a previous stage and downloaded in the current job.
应该如何解决这个问题?
这个错误是因为没有配置构建任务。您可以尝试将下面的 YAML 代码放在最后使其生效。
- task: PublishBuildArtifacts@1