Skip to content

Commit

Permalink
Don't copy Core & main package to artifacts for Camera package build (#…
Browse files Browse the repository at this point in the history
…1944)

Exclude Core & main package from camera tagged build
  • Loading branch information
jfversluis authored Jun 18, 2024
1 parent ae711ba commit 2402be1
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -337,7 +337,8 @@ jobs:
condition: and(eq(variables['Agent.OS'], 'Windows_NT'),
startsWith(variables['Build.SourceBranch'], 'refs/tags/'),
not(endsWith(variables['Build.SourceBranch'], '-mediaelement')),
not(endsWith(variables['Build.SourceBranch'], '-maps'))) # Only run this step on Windows and when it's a tagged build and the tag does NOT end with -mediaelement and does NOT end with -maps
not(endsWith(variables['Build.SourceBranch'], '-maps')),
not(endsWith(variables['Build.SourceBranch'], '-camera'))) # Only run this step on Windows and when it's a tagged build and the tag does NOT end with -mediaelement and does NOT end with -maps and does NOT end with -camera
displayName: 'Copy CommunityToolkit.Maui & CommunityToolkit.Maui.Core NuGet Packages to Staging Directory'
inputs:
targetType: 'inline'
Expand Down

0 comments on commit 2402be1

Please sign in to comment.