Skip to content

Commit

Permalink
devops: AzDO publishing fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
mxschmitt committed Nov 21, 2024
1 parent d7922c6 commit abddf26
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions .azure-pipelines/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down Expand Up @@ -80,11 +80,7 @@ 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;
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'
Expand Down

0 comments on commit abddf26

Please sign in to comment.