We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 18ece44 commit 560af67Copy full SHA for 560af67
build/initialize-pipeline.ps1
@@ -4,11 +4,11 @@ $bypassPackaging = $true
4
$suffix = "-ci"
5
Write-Host "SourceBranch: $sourceBranch, Build reason: $buildReason"
6
7
-if($sourceBranch.endsWith('release/2.0') -or $sourceBranch.startsWith('release/2.0-hotfix')) {
+if($sourceBranch.Contains("release/2.0")) {
8
$suffix = ""
9
}
10
11
-if(($sourceBranch.endsWith('v2.x') -or $sourceBranch.endsWith('release/2.0') -or $sourceBranch.startsWith('release/2.0-hotfix')) -and ($buildReason -ne "PullRequest"))
+if(($sourceBranch.endsWith('v2.x') -or $sourceBranch.Contains("release/2.0")) -and ($buildReason -ne "PullRequest"))
12
{
13
$bypassPackaging = $false
14
0 commit comments