Skip to content

Commit

Permalink
Fix parenthesis
Browse files Browse the repository at this point in the history
  • Loading branch information
raniejade committed Jul 26, 2019
1 parent 4aa4659 commit 0fdeb6e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ stages:

- stage: release
dependsOn: test_ide_plugins
condition: and(succeeded(), ne(variables['Build.Reason'], 'PullRequest'), or(eq(variables['Build.SourceBranch'], 'refs/heads/2.x'), startsWith(variables['Build.SourceBranch']), 'refs/tags/'))
condition: and(succeeded(), ne(variables['Build.Reason'], 'PullRequest'), or(eq(variables['Build.SourceBranch'], 'refs/heads/2.x'), startsWith(variables['Build.SourceBranch'], 'refs/tags/')))
jobs:
- job: jvm_js_and_linux
pool:
Expand Down Expand Up @@ -161,7 +161,7 @@ stages:

- stage: update
dependsOn: release
condition: and(succeeded(), ne(variables['Build.Reason'], 'PullRequest'), startsWith(variables['Build.SourceBranch']), 'refs/tags/')
condition: and(succeeded(), ne(variables['Build.Reason'], 'PullRequest'), startsWith(variables['Build.SourceBranch'], 'refs/tags/'))
jobs:
- job: docs
pool:
Expand Down

0 comments on commit 0fdeb6e

Please sign in to comment.