diff --git a/azp-dotnet.yaml b/azp-dotnet.yaml index e57f4bdb..fc224329 100644 --- a/azp-dotnet.yaml +++ b/azp-dotnet.yaml @@ -30,10 +30,10 @@ steps: publishLocation: 'pipeline' - task: NuGetCommand@2 - displayName: '$(Label_DotNet) Publish the NuGet package when Build.Reason is not "PullRequest"' + displayName: '$(Label_DotNet) Publish the NuGet package to MyGet when Build.Reason is not "PullRequest"' inputs: command: 'push' packagesToPush: '$(Build.ArtifactStagingDirectory)/**/*.nupkg;!$(Build.ArtifactStagingDirectory)/**/*.symbols.nupkg' - nuGetFeedType: 'internal' - publishVstsFeed: '8829e892-f54f-4979-8d72-b1dd5edb1603' + nuGetFeedType: 'external' + publishFeedCredentials: 'MyGet UiPath Dev' condition: and(succeeded(), ne(variables['Build.Reason'], 'PullRequest')) diff --git a/azp-nodejs.yaml b/azp-nodejs.yaml index 67dca0c2..b016aa9c 100644 --- a/azp-nodejs.yaml +++ b/azp-nodejs.yaml @@ -43,5 +43,5 @@ steps: workingDir: '$(NodeJS_ProjectPath)' verbose: false publishRegistry: 'useFeed' - publishFeed: '7153aa1e-cb2e-4a87-b08d-2ea22fa76ab2' + publishFeed: '424ca518-1f12-456b-a4f6-888197fc15ee' condition: and(succeeded(), ne(variables['Build.Reason'], 'PullRequest'))