File tree Expand file tree Collapse file tree 3 files changed +4
-5
lines changed Expand file tree Collapse file tree 3 files changed +4
-5
lines changed Original file line number Diff line number Diff line change @@ -18,6 +18,7 @@ stages:
18
18
- template : build/stages/build.yml
19
19
20
20
- stage : Docker
21
+ dependsOn : Build
21
22
condition : succeeded()
22
23
jobs :
23
24
- job : Docker
@@ -33,6 +34,7 @@ stages:
33
34
- template : build/stages/docker.yml
34
35
35
36
- stage : Publish
37
+ dependsOn : Build
36
38
condition : succeeded()
37
39
jobs :
38
40
- job : Publish
Original file line number Diff line number Diff line change 6
6
version : 2.2.107
7
7
installationPath : $(Agent.ToolsDirectory)/dotnet
8
8
- script : dotnet tool install --global Cake.Tool
9
- displayName : ' Install Cake tool'
10
- env :
11
- DOTNET_SKIP_FIRST_TIME_EXPERIENCE : 1
12
- DOTNET_CLI_TELEMETRY_OPTOUT : 1
9
+ displayName : ' Install Cake tool'
Original file line number Diff line number Diff line change @@ -46,7 +46,7 @@ public class BuildPaths
46
46
47
47
var vsixSuffix = parameters . IsStableRelease ( ) ? "" : "preview-" ;
48
48
var vsixOutputFilePath = buildArtifactDir . CombineWithFilePath ( "gittools.gitversion-" + vsixSuffix + version . VsixVersion + ".vsix" ) ;
49
- if ( context . FileExists ( vsixOutputFilePath ) ) {
49
+ if ( ! context . FileExists ( vsixOutputFilePath ) ) {
50
50
vsixOutputFilePath = context . GetFiles ( buildArtifactDir + "/*.vsix" ) . First ( ) ;
51
51
}
52
52
You can’t perform that action at this time.
0 commit comments