Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit d56df8b

Browse files
committedMay 28, 2024
Add parameter to skip PMC publish
1 parent e7b3c2e commit d56df8b

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed
 

‎.pipelines/PowerShell-Release-Official.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,10 @@ parameters: # parameters are shown up in ADO UI in a build queue time
1717
displayName: Skip Signing
1818
type: string
1919
default: 'NO'
20+
- name: SkipPMCPublish
21+
displayName: Skip PMC Publish
22+
type: boolean
23+
default: false
2024

2125
variables:
2226
- name: CDP_DEFINITION_BUILD_COUNT
@@ -270,7 +274,7 @@ extends:
270274
jobs:
271275
- template: /.pipelines/templates/release-publish-pmc.yml@self
272276
parameters:
273-
skipPublish: true
277+
skipPublish: ${{ parameters.SkipPMCPublish }}
274278

275279
- stage: ReleaseDocker
276280
dependsOn: PublishGitHubRelease

0 commit comments

Comments
 (0)
Please sign in to comment.