From d43ba77f2615ef51936c3711986e5623958e01b2 Mon Sep 17 00:00:00 2001 From: IGvaleries Date: Mon, 16 Dec 2024 18:25:24 -0500 Subject: [PATCH] Update build-steps-template.yml --- azure-pipelines/templates/build-steps-template.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/azure-pipelines/templates/build-steps-template.yml b/azure-pipelines/templates/build-steps-template.yml index c51c93734..1bebbf092 100644 --- a/azure-pipelines/templates/build-steps-template.yml +++ b/azure-pipelines/templates/build-steps-template.yml @@ -120,7 +120,7 @@ steps: Write-Host "$userName" $addUsername.SetAttribute("key", "Username") Write-Host "setting attribute" - $add.SetAttribute("value", $userName) + $addUsername.SetAttribute("value", $userName) $source.AppendChild($addUsername) @@ -128,7 +128,7 @@ steps: Write-Host "adding password" $password = ConvertTo-SecureString "${{ parameters.password}}" -asPlainText -Force $addPassword.SetAttribute("key", "ClearTextPassword") - $add.SetAttribute("value", "$password") + $addPassword.SetAttribute("value", "$password") $source.AppendChild($addPassword) $packageSourceCredentials.AppendChild($source)