File tree Expand file tree Collapse file tree 1 file changed +1
-5
lines changed
eng/common/pipelines/templates/steps Expand file tree Collapse file tree 1 file changed +1
-5
lines changed Original file line number Diff line number Diff line change @@ -16,13 +16,9 @@ steps:
1616 condition : succeeded()
1717- pwsh : |
1818 $setDailyDevBuild = "false"
19- if (('$(Build.Reason)' -in 'Schedule', 'IndividualCI ') -and ('$(System.TeamProject)' -eq 'internal')) {
19+ if (('$(Build.Reason)' -eq 'Schedule') -and ('$(System.TeamProject)' -eq 'internal')) {
2020 $setDailyDevBuild = "true"
2121 }
2222 echo "##vso[task.setvariable variable=SetDevVersion]$setDailyDevBuild"
2323 displayName : " Setup Versioning Properties"
2424 condition : eq(variables['SetDevVersion'], '')
25- - pwsh : |
26- echo "##vso[task.setvariable variable=SetDevVersion;isOutput=true]$(SetDevVersion)"
27- name : VersioningProperties
28- displayName : " Export Versioning Properties"
You can’t perform that action at this time.
0 commit comments