Skip to content

Commit c14ebe5

Browse files
authored
devops: fix publishing pipeline (#2918)
1 parent b876ce6 commit c14ebe5

File tree

1 file changed

+2
-11
lines changed

1 file changed

+2
-11
lines changed

.azure-pipelines/publish.yml

+2-11
Original file line numberDiff line numberDiff line change
@@ -65,12 +65,7 @@ extends:
6565
displayName: Pack Playwright NuGet Packages
6666
inputs:
6767
command: 'pack'
68-
packagesToPack: |
69-
src/Playwright.CLI/Playwright.CLI.csproj;
70-
src/Playwright/Playwright.csproj;
71-
src/Playwright.NUnit/Playwright.NUnit.csproj;
72-
src/Playwright.MSTest/Playwright.MSTest.csproj;
73-
src/Playwright.TestAdapter/Playwright.TestAdapter.csproj;
68+
packagesToPack: src/Playwright.CLI/Playwright.CLI.csproj src/Playwright/Playwright.csproj src/Playwright.NUnit/Playwright.NUnit.csproj src/Playwright.MSTest/Playwright.MSTest.csproj src/Playwright.TestAdapter/Playwright.TestAdapter.csproj
7469
packDirectory: '$(Build.ArtifactStagingDirectory)/nuget'
7570
versioningScheme: 'off'
7671
- task: 1ES.PublishNuget@1
@@ -80,11 +75,7 @@ extends:
8075
useDotNetTask: false
8176
# The reason for the 1.* after the package name is that we know the end of the package name in order to not
8277
# match with e.g. Microsoft.Playwright.CLI when we only want to match Microsoft.Playwright.
83-
packagesToPush: |
84-
$(Build.ArtifactStagingDirectory)/nuget/Microsoft.Playwright.1.*.nupkg;
85-
$(Build.ArtifactStagingDirectory)/nuget/Microsoft.Playwright.MSTest.1.*.nupkg;
86-
$(Build.ArtifactStagingDirectory)/nuget/Microsoft.Playwright.NUnit.1.*.nupkg;
87-
$(Build.ArtifactStagingDirectory)/nuget/Microsoft.Playwright.TestAdapter.1.*.nupkg;
78+
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
8879
packageParentPath: '$(Build.ArtifactStagingDirectory)'
8980
nuGetFeedType: external
9081
publishFeedCredentials: 'NuGet-Playwright'

0 commit comments

Comments
 (0)