Skip to content

Commit

Permalink
Fix pipeline to not sign deb/rpm if built for extensions only (#25161)
Browse files Browse the repository at this point in the history
  • Loading branch information
cheenamalhotra authored and siyangMicrosoft committed Jan 11, 2024
1 parent 7ee92ae commit 4dcf8d1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions build/azure-pipelines/linux/sql-product-build-linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -232,9 +232,9 @@ steps:
]
SessionTimeout: 120
displayName: 'Signing deb and rpm'
condition: and(succeeded(), eq(variables['signed'], true))
condition: and(succeeded(), ne(variables['EXTENSIONS_ONLY'], 'true'), eq(variables['signed'], true))

- task: SFP.build-tasks.custom-build-task-1.EsrpCodeSigning@1
- task: EsrpCodeSigning@3
inputs:
ConnectedServiceName: 'Code Signing'
FolderPath: '$(Build.SourcesDirectory)/.build'
Expand Down

0 comments on commit 4dcf8d1

Please sign in to comment.