From 45e95fd3ce9594cef6db5826ead2aef3720bc4f9 Mon Sep 17 00:00:00 2001 From: nhmall Date: Fri, 17 Jun 2022 09:30:24 -0400 Subject: [PATCH] pipelines fix 02 --- azure-pipelines.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 6edd041cd..c3a4f24ef 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -129,11 +129,16 @@ steps: command: 'restore' restoreSolution: '$(Agent.BuildDirectory)/$(netHackPath)/sys/windows/vs/NetHack.sln' feedsToUse: 'select' + - task: DotNetCoreCLI@2 displayName: 'Push' inputs: command: 'push' packagesToPush:'$(Build.ArtifactStagingDirectory)/**/*.nupkg;!$(Build.ArtifactStagingDirectory)/**/*.symbols.nupkg' + nuGetFeedType: 'internal' + feedsToUse: 'select' + vstsFeed: 'your feed' + publishVstsFeed: 'your feed' allowPackageConflicts: true - task: MSBuild@1