From 25ba8474f4caa0812ee1fb566a4e30c8790b196f Mon Sep 17 00:00:00 2001 From: Max Schmitt Date: Tue, 19 Sep 2023 00:41:38 +0200 Subject: [PATCH] devops: fix publishing (#1378) --- .azure-pipelines/publish.yml | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/.azure-pipelines/publish.yml b/.azure-pipelines/publish.yml index 05df856a..60a1b8d6 100644 --- a/.azure-pipelines/publish.yml +++ b/.azure-pipelines/publish.yml @@ -46,15 +46,17 @@ steps: done displayName: 'Create .sha256 files' -- task: EsrpRelease@2 +- task: EsrpRelease@4 inputs: - ConnectedServiceName: 'Playwright-Java-ESRP' + ConnectedServiceName: 'Playwright-ESRP' Intent: 'PackageDistribution' ContentType: 'Maven' - PackageLocation: './local-build' + ContentSource: 'Folder' + FolderLocation: './local-build' + WaitForReleaseCompletion: true Owners: 'yurys@microsoft.com' Approvers: 'maxschmitt@microsoft.com' ServiceEndpointUrl: 'https://api.esrp.microsoft.com' - MainPublisher: 'PlaywrightJava' + MainPublisher: 'Playwright' DomainTenantId: '72f988bf-86f1-41af-91ab-2d7cd011db47' displayName: 'ESRP Release to Maven'