forked from coverlet-coverage/coverlet
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Publish nightly packages to Azure DevOps (coverlet-coverage#1020)
* Update nightly build definitions * Update nightly package feed name * Update feed information * Use scoped name in publishVstsFeed argument * Remove nightly.ps1 * Update nightly documentation * ADO doesn't let us check package metadata
- Loading branch information
Showing
8 changed files
with
34 additions
and
52 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,35 @@ | ||
pool: | ||
vmImage: 'windows-2019' | ||
|
||
steps: | ||
- task: UseDotNet@2 | ||
inputs: | ||
version: 2.2.402 | ||
displayName: Install .NET Core SDK 2.2.402 | ||
|
||
- task: UseDotNet@2 | ||
inputs: | ||
version: 3.1.401 | ||
- powershell: | ||
.\eng\nightly.ps1 -apiKey $env:APIKEY -source $env:SOURCE | ||
ignoreLASTEXITCODE: true | ||
env: | ||
APIKEY: $(apikey) | ||
SOURCE: $(source) | ||
displayName: Install .NET Core SDK 3.1.401 | ||
|
||
- task: NuGetAuthenticate@0 | ||
displayName: Authenticate with NuGet feeds | ||
|
||
- script: dotnet pack -c Release /p:PublicRelease=false | ||
displayName: Create NuGet packages | ||
|
||
- task: NuGetCommand@2 | ||
inputs: | ||
command: push | ||
packagesToPush: $(Build.SourcesDirectory)/bin/Release/Packages/*.nupkg | ||
nuGetFeedType: internal | ||
publishVstsFeed: coverlet/coverlet-nightly | ||
displayName: Publish NuGet packages | ||
|
||
- task: NuGetCommand@2 | ||
inputs: | ||
command: push | ||
packagesToPush: $(Build.SourcesDirectory)/bin/Release/Packages/*.snupkg | ||
nuGetFeedType: internal | ||
publishVstsFeed: coverlet/coverlet-nightly | ||
displayName: Publish NuGet symbol packages |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.