Skip to content

Commit

Permalink
[Build pipeline] Update parameters usage
Browse files Browse the repository at this point in the history
  • Loading branch information
dvoituron authored Oct 27, 2023
1 parent 577f6c8 commit a7754fa
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .azure-devops/common/template-to-build-projects.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
parameters:
parameters:
- name: Projects # List of projects to build
type: string
default: ''
Expand Down Expand Up @@ -84,12 +84,12 @@ steps:
$toTest = "true"
}
if ("$(Tests)" -eq "")
if ("${{ parameters.Tests }}" -eq "")
{
$toTest = "false"
}
if ("$(IsDemo)" -eq "false")
if ("${{ parameters.IsDemo }}" -eq "false")
{
$sign = "false"
}
Expand Down

0 comments on commit a7754fa

Please sign in to comment.