diff --git a/.azure-pipelines/publish.yml b/.azure-pipelines/publish.yml index 168b7d901f..92b451bae6 100644 --- a/.azure-pipelines/publish.yml +++ b/.azure-pipelines/publish.yml @@ -44,7 +44,7 @@ extends: inputs: packageType: sdk version: 8.x - - task: MicroBuildSigningPlugin@3 + - task: MicroBuildSigningPlugin@4 inputs: signType: real feedSource: 'https://devdiv.pkgs.visualstudio.com/DefaultCollection/_packaging/MicroBuildToolset/nuget/v3/index.json' @@ -80,11 +80,8 @@ extends: useDotNetTask: false # The reason for the 1.* after the package name is that we know the end of the package name in order to not # match with e.g. Microsoft.Playwright.CLI when we only want to match Microsoft.Playwright. - packagesToPush: | - $(Build.ArtifactStagingDirectory)/nuget/Microsoft.Playwright.1.*.nupkg; - $(Build.ArtifactStagingDirectory)/nuget/Microsoft.Playwright.MSTest.1.*.nupkg; - $(Build.ArtifactStagingDirectory)/nuget/Microsoft.Playwright.NUnit.1.*.nupkg; - $(Build.ArtifactStagingDirectory)/nuget/Microsoft.Playwright.TestAdapter.1.*.nupkg; + # Semicolon separated as per https://portal.microsofticm.com/imp/v5/incidents/details/467483180/summary + packagesToPush: $(Build.ArtifactStagingDirectory)/nuget/Microsoft.Playwright.1.*.nupkg;$(Build.ArtifactStagingDirectory)/nuget/Microsoft.Playwright.MSTest.1.*.nupkg;$(Build.ArtifactStagingDirectory)/nuget/Microsoft.Playwright.NUnit.1.*.nupkg;$(Build.ArtifactStagingDirectory)/nuget/Microsoft.Playwright.TestAdapter.1.*.nupkg packageParentPath: '$(Build.ArtifactStagingDirectory)' nuGetFeedType: external publishFeedCredentials: 'NuGet-Playwright'