Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix failing nightly pipeline #1582

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 7 additions & 2 deletions eng/azure-pipelines-nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,11 @@ steps:
version: 7.0.403
displayName: Install .NET Core SDK 7.0.403

- task: UseDotNet@2
inputs:
useGlobalJson: true
displayName: Install .NET Core SDK 8.0.100

- task: NuGetAuthenticate@1
displayName: Authenticate with NuGet feeds

Expand All @@ -21,15 +26,15 @@ steps:
- task: NuGetCommand@2
inputs:
command: push
packagesToPush: $(Build.SourcesDirectory)/bin/Release/Packages/*.nupkg
packagesToPush: $(Build.SourcesDirectory)\artifacts\package\release\*.nupkg
nuGetFeedType: internal
publishVstsFeed: coverlet/coverlet-nightly
displayName: Publish NuGet packages

- task: NuGetCommand@2
inputs:
command: push
packagesToPush: $(Build.SourcesDirectory)/bin/Release/Packages/*.snupkg
packagesToPush: $(Build.SourcesDirectory)\artifacts\package\release\*.nupkg
nuGetFeedType: internal
publishVstsFeed: coverlet/coverlet-nightly
displayName: Publish NuGet symbol packages
Loading