Skip to content

Commit

Permalink
Update build-steps-template.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
IGvaleries authored Dec 16, 2024
1 parent 3b3fd0c commit 3b32b65
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions azure-pipelines/templates/build-steps-template.yml
Original file line number Diff line number Diff line change
Expand Up @@ -115,11 +115,12 @@ steps:
$addUsername = $nugetConfig.CreateElement("add")
Write-Host "adding username"
$userName = ${{ parameters.username }}
Write-Host "username is"
Write-Host "${{ parameters.userName }}"
Write-Host "$userName"
$addUsername.SetAttribute("key", "Username")
Write-Host "setting attribute"
$add.SetAttribute("value", "${{ parameters.userName }}")
$add.SetAttribute("value", $userName)
$source.AppendChild($addUsername)
Expand Down

0 comments on commit 3b32b65

Please sign in to comment.