File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed
Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change 7979 searchFolder : ' $(System.DefaultWorkingDirectory)'
8080
8181 - task : PowerShell@2
82- condition : and( succeeded() )
82+ condition : succeeded()
8383 displayName : dotnet publish
8484 inputs :
8585 targetType : ' inline'
9494 & dotnet publish $(Build.SourcesDirectory)\src\Generator.Client.CommandLine\Generator.Client.CommandLine.csproj -r win-x64 -f netcoreapp2.1 -c $(buildConfiguration) --self-contained false -o $(Build.ArtifactStagingDirectory)\cli-netcore2.1-shared
9595
9696 - task : PowerShell@2
97- condition : and( succeeded() )
97+ condition : succeeded()
9898 displayName : dotnet pack dev
9999 inputs :
100100 targetType : ' inline'
@@ -108,29 +108,29 @@ jobs:
108108 Invoke-Expression $commandSample
109109
110110 - task : CopyFiles@2
111- condition : and( succeeded() )
111+ condition : succeeded()
112112 inputs :
113113 SourceFolder : ' $(Build.SourcesDirectory)'
114114 Contents : |
115115 **/*.md
116116 TargetFolder : ' $(Build.ArtifactStagingDirectory)'
117117
118118 - task : PowerShell@2
119- condition : and( succeeded() )
119+ condition : succeeded()
120120 displayName : zip artifacts
121121 inputs :
122122 targetType : ' inline'
123123 script : |
124124 7z a $(Build.ArtifactStagingDirectory)\TemplateGenerator_$(PackageVersion)_win64.zip $(Build.ArtifactStagingDirectory)\*
125125
126126 - task : PublishPipelineArtifact@0
127- condition : and( succeeded() )
127+ condition : succeeded()
128128 inputs :
129129 artifactName : ' drop'
130130 targetPath : ' $(Build.ArtifactStagingDirectory)\TemplateGenerator_$(PackageVersion)_win64.zip'
131131
132132 - task : PublishPipelineArtifact@0
133- condition : and( succeeded() )
133+ condition : succeeded()
134134 inputs :
135135 artifactName : ' nupkg'
136136 targetPath : ' $(Build.ArtifactStagingDirectory)\nupkg'
You can’t perform that action at this time.
0 commit comments