Skip to content

Commit

Permalink
empty ghp
Browse files Browse the repository at this point in the history
  • Loading branch information
freddydk committed Dec 20, 2023
1 parent c177e01 commit 8b5fa70
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion Actions/RunPipeline/RunPipeline.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -308,7 +308,12 @@ try {
}

if ((($bcContainerHelperConfig.ContainsKey('TrustedNuGetFeeds') -and ($bcContainerHelperConfig.TrustedNuGetFeeds.Count -gt 0)) -or ($gitHubPackagesContext)) -and ($runAlPipelineParams.Keys -notcontains 'InstallMissingDependencies')) {
$gitHubPackagesCredential = $gitHubPackagesContext | ConvertFrom-Json
if ($githubPackagesContext) {
$gitHubPackagesCredential = $gitHubPackagesContext | ConvertFrom-Json
}
else {
$gitHubPackagesCredential = [PSCustomObject]@{ "serverUrl" = ''; "token" = '' }
}
$runAlPipelineParams += @{
"InstallMissingDependencies" = {
Param([Hashtable]$parameters)
Expand Down

0 comments on commit 8b5fa70

Please sign in to comment.