-
Notifications
You must be signed in to change notification settings - Fork 831
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: fix esrp to use new auth (#2218)
- Loading branch information
1 parent
d0a2161
commit d234d79
Showing
1 changed file
with
12 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -336,17 +336,25 @@ jobs: | |
PGP-PW: $(pgp-pw) | ||
SYNAPSEML_ENABLE_PUBLISH: true | ||
displayName: 'publish jar package to maven central' | ||
- task: EsrpRelease@3 | ||
inputs: | ||
ConnectedServiceName: 'DataScienceESRPRelease' | ||
- task: EsrpRelease@7 | ||
inputs: | ||
ConnectedServiceName: 'DataScienceESRPRelease2024' | ||
# The keyvault hosting the certs https://ms.portal.azure.com/#@microsoft.onmicrosoft.com/resource/subscriptions/13842c9d-5a2d-4da1-84a8-3383f543d9ba/resourceGroups/esrp/providers/Microsoft.KeyVault/vaults/synapseml-esrp-kv/overview | ||
keyvaultname: 'synapseml-esrp-kv' | ||
authcertname: 'ReleaseAutomation' | ||
signcertname: 'ESRPReqSignCA' | ||
# The entra app https://ms.portal.azure.com/#view/Microsoft_AAD_RegisteredApps/ApplicationMenuBlade/~/Manifest/appId/1fc1c0d1-5a85-4081-8f1e-12a8c225b9a6/isMSAApp~/false | ||
clientid: '1fc1c0d1-5a85-4081-8f1e-12a8c225b9a6' | ||
Intent: 'PackageDistribution' | ||
ContentType: 'Maven' | ||
PackageLocation: '/home/vsts/.ivy2/local/com.microsoft.azure/' | ||
contentsource: 'Folder' | ||
folderlocation: '/home/vsts/.ivy2/local/com.microsoft.azure/' | ||
Owners: '[email protected],[email protected],[email protected],[email protected],[email protected],[email protected]' | ||
Approvers: '[email protected],[email protected],[email protected]' | ||
ServiceEndpointUrl: 'https://api.esrp.microsoft.com' | ||
MainPublisher: 'synapseml' | ||
DomainTenantId: '72f988bf-86f1-41af-91ab-2d7cd011db47' | ||
waitforreleasecompletion: true | ||
displayName: 'ESRP Publish Package' | ||
condition: and(eq(variables.isMaster, true), startsWith(variables['tag'], 'v')) | ||
|
||
|