File tree 1 file changed +11
-3
lines changed
1 file changed +11
-3
lines changed Original file line number Diff line number Diff line change @@ -18,13 +18,21 @@ steps:
18
18
targetPath : ' $(Build.SourcesDirectory)\obj\Lab.Release\NugetPackageVersion.txt'
19
19
artifactName : ' PackageVersion'
20
20
OneESPT : true
21
-
21
+
22
+ - task : CopyFiles@2
23
+ inputs :
24
+ SourceFolder : $(Build.BinariesDirectory)
25
+ Contents : ' **/*.nupkg'
26
+ TargetFolder : $(Build.SourcesDirectory)/NugetPackages
27
+ flattenFolders : true
28
+ OverWrite : true
29
+
22
30
- task : 1ES.PublishNuget@1
23
31
displayName : Publish Nuget package
24
32
condition : and(succeeded(), eq(variables['SignType'], 'real'))
25
33
inputs :
26
- packagesToPush : ' $(Build.SourcesDirectory)\VS.Redist.Debugger.MDD.MIEngine.*.nupkg;$(Build.SourcesDirectory)\VS.Redist.Debugger.MDD.UnixPortSupplier. *.nupkg'
27
- packageParentPath : ' $(Build.SourcesDirectory)'
34
+ packagesToPush : ' $(Build.SourcesDirectory)/NugetPackages/ *.nupkg'
35
+ packageParentPath : ' $(Build.SourcesDirectory)/NugetPackages '
28
36
publishVstsFeed : ' 97a41293-2972-4f48-8c0e-05493ae82010' # VS
29
37
nuGetFeedType : internal
30
38
...
You can’t perform that action at this time.
0 commit comments