Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: start publishing Microsoft.Playwright.Xunit #3064

Merged
merged 1 commit into from
Nov 25, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .azure-pipelines/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,7 @@ extends:
src/Playwright/Playwright.csproj;
src/Playwright.NUnit/Playwright.NUnit.csproj;
src/Playwright.MSTest/Playwright.MSTest.csproj;
src/Playwright.MSTest/Playwright.Xunit.csproj;
src/Playwright.TestAdapter/Playwright.TestAdapter.csproj;
packDirectory: '$(Build.ArtifactStagingDirectory)/nuget'
versioningScheme: 'off'
Expand All @@ -81,7 +82,7 @@ extends:
# 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.
# 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
packagesToPush: $(Build.ArtifactStagingDirectory)/nuget/Microsoft.Playwright.1.*.nupkg;$(Build.ArtifactStagingDirectory)/nuget/Microsoft.Playwright.MSTest.1.*.nupkg;$(Build.ArtifactStagingDirectory)/nuget/Microsoft.Playwright.Xunit.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
Loading