Skip to content

Commit 2402be1

Browse files
authored
Don't copy Core & main package to artifacts for Camera package build (#1944)
Exclude Core & main package from camera tagged build
1 parent ae711ba commit 2402be1

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

azure-pipelines.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -337,7 +337,8 @@ jobs:
337337
condition: and(eq(variables['Agent.OS'], 'Windows_NT'),
338338
startsWith(variables['Build.SourceBranch'], 'refs/tags/'),
339339
not(endsWith(variables['Build.SourceBranch'], '-mediaelement')),
340-
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
340+
not(endsWith(variables['Build.SourceBranch'], '-maps')),
341+
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
341342
displayName: 'Copy CommunityToolkit.Maui & CommunityToolkit.Maui.Core NuGet Packages to Staging Directory'
342343
inputs:
343344
targetType: 'inline'

0 commit comments

Comments
 (0)