Skip to content

Commit

Permalink
Merge pull request #899 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 65da38c + dfe8eec commit 3b3fd0c
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions azure-pipelines/templates/build-steps-template.yml
Original file line number Diff line number Diff line change
Expand Up @@ -116,17 +116,17 @@ steps:
$addUsername = $nugetConfig.CreateElement("add")
Write-Host "adding username"
Write-Host "username is"
Write-Host ${{ parameters.userName }}
Write-Host "${{ parameters.userName }}"
$addUsername.SetAttribute("key", "Username")
Write-Host "setting attribute"
$add.SetAttribute("value", ${{ parameters.userName }})
$add.SetAttribute("value", "${{ parameters.userName }}")
$source.AppendChild($addUsername)
$addPassword = $nugetConfig.CreateElement("add")
Write-Host "adding password"
$addPassword.SetAttribute("key", "ClearTextPassword")
$add.SetAttribute("value", ${{ parameters.password }})
$add.SetAttribute("value", "${{ parameters.password }}")
$source.AppendChild($addPassword)
$packageSourceCredentials.AppendChild($source)
Expand All @@ -149,7 +149,6 @@ steps:
feedsToUse: 'config'
nugetConfigPath: '$(Build.SourcesDirectory)\nuget.config'
# This task cannot use an apiKey directly (yet) so use any other service connection not based on an api key
externalFeedCredentials: 'IG ProGet IgniteUINuGet - Staging'
verbosityRestore: 'Diagnostic'


Expand Down

0 comments on commit 3b3fd0c

Please sign in to comment.