Skip to content
Merged
Show file tree
Hide file tree
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
23 changes: 23 additions & 0 deletions eng/publish/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -350,6 +350,29 @@ extends:
packagesToPush: '$(System.DefaultWorkingDirectory)/drop/Microsoft.DurableTask.ScheduledTasks.*.nupkg;!$(System.DefaultWorkingDirectory)/**/*.symbols.nupkg' # Despite this being a custom command, we need to keep this for 1ES validation
packageParentPath: $(System.DefaultWorkingDirectory) # This needs to be set to some prefix of the `packagesToPush` parameter. Apparently it helps with SDL tooling

# NuGet release (Microsoft.DurableTask.ExportHistory)
- job: nugetRelease_Microsoft_DurableTask_ExportHistory
displayName: NuGet Release (Microsoft.DurableTask.ExportHistory)
dependsOn: nugetApproval
condition: succeeded('nugetApproval') # nuget packages need to be on ADO first
templateContext:
type: releaseJob
isProduction: true
inputs:
- input: pipelineArtifact
pipeline: officialPipeline # Pipeline reference as defined in the resources section
artifactName: drop
targetPath: $(System.DefaultWorkingDirectory)/drop
steps:
- task: 1ES.PublishNuget@1
displayName: 'NuGet push (Microsoft.DurableTask.ExportHistory)'
inputs:
command: push
nuGetFeedType: external
publishFeedCredentials: 'DurableTask org NuGet API Key'
packagesToPush: '$(System.DefaultWorkingDirectory)/drop/Microsoft.DurableTask.ExportHistory.*.nupkg;!$(System.DefaultWorkingDirectory)/**/*.symbols.nupkg' # Despite this being a custom command, we need to keep this for 1ES validation
packageParentPath: $(System.DefaultWorkingDirectory) # This needs to be set to some prefix of the `packagesToPush` parameter. Apparently it helps with SDL tooling

# add it for Microsoft.DurableTask.Extensions.AzureBlobPayloads
- job: nugetRelease_Microsoft_DurableTask_Extensions_AzureBlobPayloads
displayName: NuGet Release (Microsoft.DurableTask.Extensions.AzureBlobPayloads)
Expand Down
3 changes: 2 additions & 1 deletion list-nuget-packages-links.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,8 @@ $packages = @(
"Microsoft.DurableTask.Extensions.AzureBlobPayloads",
"Microsoft.DurableTask.Client.AzureManaged",
"Microsoft.DurableTask.Worker.AzureManaged",
"Microsoft.DurableTask.ScheduledTasks"
"Microsoft.DurableTask.ScheduledTasks",
"Microsoft.DurableTask.ExportHistory"
)

Write-Host "DurableTask .NET NuGet Packages (latest versions):" -ForegroundColor Green
Expand Down
Loading