Skip to content

Commit

Permalink
Revise stage condition. (#14851)
Browse files Browse the repository at this point in the history
  • Loading branch information
mitchdenny authored Apr 13, 2021
1 parent b68fb81 commit 64668dc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion eng/pipelines/templates/stages/archetype-js-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,7 @@ stages:
- job: PublishPackages
# Run Integration job only if SetDevVersion is set to true or ( SetDevVersion is empty and job is a scheduled CI run)
# If SetDevVersion is set to false then we should skip integration job even for scheduled runs.
condition: or(eq(variables['SetDevVersion'], 'true'), and(eq(variables['SetDevVersion'], ''), eq(variables['Build.Reason'],'Schedule'), eq(variables['System.TeamProject'], 'internal')))
condition: and(eq(variables['SetDevVersion'], 'true'), eq(variables['System.TeamProject'], 'internal'))
displayName: Publish package to daily feed
pool:
name: azsdk-pool-mms-ubuntu-1804-general
Expand Down

0 comments on commit 64668dc

Please sign in to comment.