Skip to content

Commit fc333e8

Browse files
committed
Update azure-pipelines.yml for Azure Pipelines
1 parent c64b528 commit fc333e8

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

azure-pipelines.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -98,11 +98,14 @@ jobs:
9898
dependsOn:
9999
- Build_SqlQueryTools
100100
condition: and(succeeded(), eq(variables['Build.SourceBranch'], 'refs/heads/master'), ne(dependencies.Build_SqlQueryTools.outputs['CurrentVsixManifest.VsixVersion'], dependencies.Build_SqlQueryTools.outputs['PreviousVsixManifest.VsixVersion']))
101+
variables:
102+
currentVsixVersion: $[ dependencies.Build_SqlQueryTools.outputs['CurrentVsixManifest.VsixVersion'] ]
101103
steps:
102104

103105
- checkout: none
104106

105107
- task: DownloadPipelineArtifact@2
108+
displayName: 'Download artifact'
106109
inputs:
107110
buildType: 'current'
108111
artifactName: 'SqlQueryTools'
@@ -113,6 +116,7 @@ jobs:
113116
inputs:
114117
targetType: 'inline'
115118
script: |
116-
echo "Start Deploy"
119+
echo "Start Deploy of $(currentVsixVersion)"
117120
$vsixPath = Resolve-Path $(Build.StagingDirectory)\Artifact\
118-
Get-ChildItem $vsixPath
121+
Get-ChildItem $vsixPath
122+

0 commit comments

Comments
 (0)