Skip to content

Commit

Permalink
Merge pull request #902 from IgniteUI/IGvaleries-patch-1
Browse files Browse the repository at this point in the history
Update build-steps-template.yml
  • Loading branch information
IGvaleries authored Dec 16, 2024
2 parents 36a4a48 + d43ba77 commit 3a67c21
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions azure-pipelines/templates/build-steps-template.yml
Original file line number Diff line number Diff line change
Expand Up @@ -120,15 +120,15 @@ steps:
Write-Host "$userName"
$addUsername.SetAttribute("key", "Username")
Write-Host "setting attribute"
$add.SetAttribute("value", $userName)
$addUsername.SetAttribute("value", $userName)
$source.AppendChild($addUsername)
$addPassword = $nugetConfig.CreateElement("add")
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)
Expand Down

0 comments on commit 3a67c21

Please sign in to comment.