Skip to content
Draft
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
14 changes: 13 additions & 1 deletion eng/promote-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,17 @@ parameters:
type: string
default: ' '

- name: BuildQuality
displayName: "Build quality used when creating aka.ms links (aka.ms/dotnet/<channel>/<quality>/...):"
type: string
default: daily
values:
- daily
- preview
- ga
- signed
- validated

# The parameters below here are legacy. They are passed by add-build-to-channel
# to the build pipeline, and if they are not present in the pipeline, then queueing
# will fail. Remove once add-build-to-channel has been updated to remove the parameters.
Expand Down Expand Up @@ -83,4 +94,5 @@ extends:
PromoteToChannelIds: ${{ parameters.PromoteToChannelIds }}
BARBuildId: ${{ parameters.BARBuildId }}
symbolPublishingAdditionalParameters: ${{ parameters.SymbolPublishingAdditionalParameters }}
artifactsPublishingAdditionalParameters: ${{ parameters.ArtifactsPublishingAdditionalParameters }}
artifactsPublishingAdditionalParameters: ${{ parameters.ArtifactsPublishingAdditionalParameters }}

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This shuold alrewady be available via artifactsPublishingAdditionalParameters

buildQuality: ${{ parameters.BuildQuality }}
Loading