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 2d015a2 commit 199a99dCopy full SHA for 199a99d
azure-pipelines.yml
@@ -13,6 +13,7 @@ trigger:
13
branches:
14
include:
15
- release/2.0
16
+ - hotfix-73.1
17
- v2.x
18
19
jobs:
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')) {
+if($sourceBranch.endsWith('hotfix-73.1')) {
8
$suffix = ""
9
}
10
11
-if(($sourceBranch.endsWith('v2.x') -or $sourceBranch.endsWith('release/2.0')) -and ($buildReason -ne "PullRequest"))
+if(($sourceBranch.endsWith('v2.x') -or $sourceBranch.endsWith('hotfix-73.1')) -and ($buildReason -ne "PullRequest"))
12
{
$bypassPackaging = $false
0 commit comments