@@ -114,9 +114,11 @@ stages:
114
114
- output : pipelineArtifact
115
115
path : $(Build.SourcesDirectory)/Packages
116
116
artifact : Packages
117
+ condition : always()
117
118
- output : pipelineArtifact
118
119
path : $(Build.SourcesDirectory)/out/logs
119
120
artifact : SigningLogs
121
+ condition : always()
120
122
steps :
121
123
- checkout : self
122
124
clean : true
@@ -176,17 +178,17 @@ stages:
176
178
SignType : $(signType)
177
179
SYSTEM_ACCESSTOKEN : $(System.AccessToken)
178
180
179
- - ${{ if eq(parameters.isOfficial, true) }} :
180
- - script : gulp verifyVsix
181
- condition : and( succeeded(), eq('$(SignType)', 'Real'))
182
- displayName : 🔑 Verify VSIX Signature Files
183
- workingDirectory : ' $(Build.SourcesDirectory)/vsix'
184
-
185
181
- task : CopyFiles@2
186
182
inputs :
187
183
SourceFolder : ' $(Build.SourcesDirectory)/vsix'
188
184
TargetFolder : ' $(Build.SourcesDirectory)/Packages/VSIX_$(channel)'
189
185
186
+ - ${{ if eq(parameters.isOfficial, true) }} :
187
+ - script : gulp verifyVsix
188
+ condition : and( succeeded(), eq('$(SignType)', 'Real'))
189
+ displayName : 🔑 Verify VSIX Signature Files
190
+ workingDirectory : ' $(Build.SourcesDirectory)/Packages/VSIX_$(channel)'
191
+
190
192
- ${{ if ne(parameters.isOfficial, true) }} :
191
193
- task : PublishPipelineArtifact@1
192
194
condition : succeeded()
0 commit comments