Skip to content

Commit a10ccd7

Browse files
authored
Disable pushing packages to NuGet
1 parent 1142f93 commit a10ccd7

File tree

1 file changed

+10
-9
lines changed

1 file changed

+10
-9
lines changed

azure-pipelines.yml

Lines changed: 10 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -192,15 +192,16 @@ stages:
192192
packagesToPush: "$(System.ArtifactsDirectory)/nuget/**/*.nupkg"
193193
publishVstsFeed: Builds/omnisharp
194194
allowPackageConflicts: true
195-
- task: NuGetCommand@2
196-
displayName: "Push NuGet packages to nuget.org"
197-
inputs:
198-
command: push
199-
nuGetFeedType: external
200-
packagesToPush: "$(System.ArtifactsDirectory)/nuget/**/*.nupkg"
201-
publishFeedCredentials: nuget.org
202-
allowPackageConflicts: true
203-
condition: and(succeeded(), eq(variables.IsOfficialRelease, true))
195+
# Re-enable once we have an updated PAT
196+
# - task: NuGetCommand@2
197+
# displayName: "Push NuGet packages to nuget.org"
198+
# inputs:
199+
# command: push
200+
# nuGetFeedType: external
201+
# packagesToPush: "$(System.ArtifactsDirectory)/nuget/**/*.nupkg"
202+
# publishFeedCredentials: nuget.org
203+
# allowPackageConflicts: true
204+
# condition: and(succeeded(), eq(variables.IsOfficialRelease, true))
204205
- task: GitHubRelease@1
205206
displayName: "GitHub release (edit)"
206207
inputs:

0 commit comments

Comments
 (0)