我对所有AZURE devops 都很陌生。
我只是在我的 VS 解决方案上进行了最小安装,在我的解决方案中 nuget Gitversiontask,推送到 Azure Git 管道,它与开发分支一起工作。
我创建了 ( GitFLOW ) 一个名为 dostuff的功能。对类进行了一些更改,然后提交并推送...版本功能/我的应用程序 6.1.0-dostuff0001 出来了...Nuget 打包并推送...一切都很好。
然后做了另一个提交,管道开始但在Nuget 推送到工件...错误 409(冲突 - 提要已经包含'my-app 6.1.0-dostuff0001)。
- task: NuGetCommand@2
displayName: 'restore WinFormExtC.sln'
inputs:
restoreSolution: WinFormExtC/ActiveFramework.WinFormExtC.sln
feedsToUse: config
nugetConfigPath: NuGet/NuGet.Config
steps:
- task: VSBuild@1
displayName: 'Build solution WinFormExtC'
inputs:
solution: WinFormExtC/ActiveFramework.WinFormExtC.sln
platform: '$(BuildPlatform)'
configuration: '$(BuildConfiguration)'
steps:
- task: NuGetCommand@2
displayName: 'NuGet pack WinFormExtC'
inputs:
command: pack
packagesToPack: WinFormExtC/Package.nuspec
versioningScheme: byEnvVar
versionEnvVar: GitVersion.NuGetVersion
includeSymbols: true
Your build pipeline references an undefined variable named ‘Parameters.searchPatternPush’. Create or edit the build pipeline for this YAML file, define the variable on the Variables tab. See https://go.microsoft.com/fwlink/?linkid=865972
steps:
- task: NuGetCommand@2
displayName: 'NuGet push'
inputs:
command: push
packagesToPush: '$(Parameters.searchPatternPush)'
publishVstsFeed: '505cb4b9-0633-4d83-b4b6-1e5fc7ad020f'
问题:当我在 Azure devops 中对管道进行排队并且构建任务增加功能分支的版本时,如何使 my-app 6.1.0-dostuff0001 增加或更改?
请记住,我对所有这些构建、yml、配置等概念都是新手。