在Azure DevOps中运行5分钟后,nuget推送超时

时间:2018-12-17 12:45:31

标签: node.js azure nuget azure-devops azure-pipelines

我正在尝试使用NuGet和Azure DevOps发布节点应用程序。

客户端需要将node_modules与源代码打包在一起,以便可以使用应用程序而无需在主机上安装依赖项。

这里是azure-pipelines.yml的一部分,负责推送包裹:

- task: NuGetCommand@2
  displayName: "Publish the artifacts"
  inputs:
    command: push
    packagesToPush: "path-to-package.nupkg"
    nuGetFeedType: internal
    publishVstsFeed: "SomeFeed"
    versioningScheme: byEnvVar
    versionEnvVar: BuildNumber
    verbosityPush: "Detailed"
    arguments: "-Timeout 901"

文档说我可以使用arguments字段将参数传递给命令,但是似乎它被忽略了,而push命令总是在5分钟(或300秒-这是默认超时)之后超时

文档中没有关于arguments字段格式的信息,我只是假设它应该是字符串。

我想念什么?

0 个答案:

没有答案