从Azure DevOps管道YAML文件运行`az artificats`命令

在我的Azure Pipelines YAML文件中,我正在使用Bash任务运行一个Python脚本,该脚本在Azure Artifacts(通用包)上缓存Cocoapods库。我假设Azure DevOps虚拟机上的Azure命令行工具将安装最新的Azure扩展。我错了。

我的Python脚本调用诸如az artifacts universal downloadaz artifacts universal publish之类的命令。这在我的Mac上效果很好。在microsoft的VM上没有那么多。

任何建议将不胜感激。

##[section]Starting: Bash
==============================================================================
Task         : Bash
Description  : Run a Bash script on macOS,Linux,or Windows
Version      : 3.159.3
Author       : microsoft Corporation
Help         : https://docs.microsoft.com/azure/devops/pipelines/tasks/utility/bash
==============================================================================
Generating script.
Script contents:
./cache_pods.py Debug
========================== Starting Command Output ===========================
[command]/bin/bash --noprofile --norc /Users/runner/runners/2.160.1/work/_temp/d0fd889d-a201-42ac-aad6-45ee3eca0532.sh
ERROR: az: 'artifacts' is not in the 'az' command group. See 'az --help'.
hangzhoushuangyu 回答:从Azure DevOps管道YAML文件运行`az artificats`命令

错误:az:'artifacts'不在'az'命令组中。参见“ az --help”。

您需要先安装Azure DevOps Extension,然后再使用az构件命令。 有关更多信息,请参阅Azure DevOps CLI in Azure Pipeline YAML

steps:
- script: az extension add -n azure-devops
  displayName: 'Install Azure DevOps Extension'

请将其添加到您的Yaml中,然后重试。希望这会工作。

,

遇到同样的问题一个小时后,得到解决方案: 如果没有扩展,它将无法正常工作,因此请尝试执行以下步骤:

首先尝试按以下命令查找扩展名

az extension add --name azure-devops

,然后检查扩展名是否可用:

例如。对于管道:

az extension add --name azure-devops

然后运行该命令

本文链接:https://www.f2er.com/2965193.html

大家都在问