Skip to content

Commit

Permalink
add ShouldPublishSymbols param to pipeline (#6384)
Browse files Browse the repository at this point in the history
  • Loading branch information
RodgeFu authored Jun 22, 2023
1 parent 5cd613d commit 89e5378
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
4 changes: 4 additions & 0 deletions eng/pipelines/templates/stages/archetype-sdk-tool-dotnet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,9 @@ parameters:
- name: ReleaseBinaries
type: boolean
default: false
- name: ShouldPublishSymbols
type: boolean
default: true


variables:
Expand Down Expand Up @@ -177,6 +180,7 @@ stages:
DevOpsFeedId: '29ec6040-b234-4e31-b139-33dc4287b756/fa8c16a3-dbe0-4de2-a297-03065ec1ba3f'
ExeMatrix: ${{ parameters.StandaloneExeMatrix }}
ShouldPublishExecutables: ${{ parameters.ReleaseBinaries }}
ShouldPublishSymbols: ${{ parameters.ShouldPublishSymbols }}

- ${{if and(not(eq(length(parameters.DockerDeployments), 0)), ne(variables['Build.Reason'], 'PullRequest'), eq(variables['System.TeamProject'], 'internal'))}}:
- stage: PublishDockerImages
Expand Down
3 changes: 2 additions & 1 deletion tools/net-changelog-gen-mgmt/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,4 +24,5 @@ pr:
extends:
template: /eng/pipelines/templates/stages/archetype-sdk-tool-dotnet.yml
parameters:
ToolDirectory: tools/net-changelog-gen-mgmt
ToolDirectory: tools/net-changelog-gen-mgmt
ShouldPublishSymbols: false

0 comments on commit 89e5378

Please sign in to comment.