We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 22c3a14 commit 856369eCopy full SHA for 856369e
1 file changed
azure-pipelines.yml
@@ -86,10 +86,11 @@ steps:
86
inputs:
87
PathtoPublish: '$(Build.ArtifactStagingDirectory)'
88
89
+# -n true --> https://github.com/NuGet/Home/issues/8148
90
- task: DotNetCoreCLI@2
91
displayName: Push to MyGet
92
condition: and(succeeded(), ne(variables['Build.Reason'], 'PullRequest')) # Do not run for PullRequests
93
94
command: custom
95
custom: nuget
- arguments: push $(Build.ArtifactStagingDirectory)\packages\*.nupkg --source https://www.myget.org/F/system-linq-dynamic-core/api/v3/index.json --no-service-endpoint --api-key $(MyGetKey)
96
+ arguments: push $(Build.ArtifactStagingDirectory)\packages\*.nupkg -n true -s https://www.myget.org/F/system-linq-dynamic-core/api/v3/index.json --no-service-endpoint --api-key $(MyGetKey)
0 commit comments