@@ -225,7 +225,7 @@ jobs:
225
225
inputs :
226
226
command : custom
227
227
custom : tool
228
- arguments : install --tool-path . sign --version 0.9.1-beta.23530.1
228
+ arguments : install --tool-path . sign --version 0.9.1-beta.24170.3
229
229
230
230
- pwsh : |
231
231
.\sign code azure-key-vault `
@@ -249,12 +249,11 @@ jobs:
249
249
)
250
250
251
251
# publish artifacts (only possible if this is not a PR originated on a fork)
252
- - task : PublishBuildArtifacts @1
252
+ - task : PublishPipelineArtifact @1
253
253
displayName : Publish deployables artifacts
254
254
inputs :
255
- PathtoPublish : ' $(Build.ArtifactStagingDirectory)'
256
- ArtifactName : deployables
257
- ArtifactType : Container
255
+ targetPath : ' $(Build.ArtifactStagingDirectory)'
256
+ artifactName : deployables
258
257
259
258
# set cloud build vars again as they've been overriten by the tests run
260
259
- script : nbgv cloud -a -c
@@ -297,6 +296,7 @@ jobs:
297
296
isPreRelease : false
298
297
isDraft : false
299
298
addChangeLog : true
299
+ changeLogType : issueBased
300
300
changeLogLabels : |
301
301
[
302
302
{ "label" : "Type: bug", "displayName" : "Bugs fixed", "state" : "closed" },
@@ -310,6 +310,10 @@ jobs:
310
310
- job : Update_Dependents
311
311
condition : >-
312
312
and(
313
+ or(
314
+ succeeded('Build_MDP'),
315
+ not(in(dependencies.PreviousJob.result, 'Succeeded', 'Failed', 'Canceled'))
316
+ ),
313
317
or(
314
318
eq(dependencies.Get_Build_Flags.outputs['GetPRLabels.RUN_UPDATE_DEPENDENTS'], 'true'),
315
319
eq(variables['UPDATE_DEPENDENTS'], 'true')
0 commit comments