Skip to content

Commit 8213288

Browse files
Revert changes to SetDevVersion. (Azure#18555)
Co-authored-by: Mitch Denny <midenn@microsoft.com>
1 parent 9b79695 commit 8213288

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

eng/common/pipelines/templates/steps/daily-dev-build-variable.yml

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff 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"

0 commit comments

Comments
 (0)