Skip to content

Commit

Permalink
fix: syntax for output variable
Browse files Browse the repository at this point in the history
  • Loading branch information
angela-tran committed Aug 29, 2023
1 parent 9c47922 commit 67d5700
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions experiment/experiment-pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -94,8 +94,8 @@ stages:
or(
in(variables['Build.SourceBranchName'], 'dev'),
or(
eq(variables['tag_type'], 'test'),
eq(variables['tag_type'], 'prod')
eq(variables['setvars.tag_type'], 'test'),
eq(variables['setvars.tag_type'], 'prod')
)
)
- stage: TerraformApply
Expand All @@ -110,8 +110,8 @@ stages:
or(
in(variables['Build.SourceBranchName'], 'dev'),
or(
eq(variables['tag_type'], 'test'),
eq(variables['tag_type'], 'prod')
eq($(tag_type), 'test'),
eq($(tag_type), 'prod')
)
)
jobs:
Expand Down

0 comments on commit 67d5700

Please sign in to comment.