From 6e19575491d8044b2525a3685b8af394709b3a45 Mon Sep 17 00:00:00 2001 From: Azure SDK Bot <53356347+azure-sdk@users.noreply.github.com> Date: Tue, 16 Mar 2021 14:53:03 -0700 Subject: [PATCH] Revert to Checking only ci.yml (#1918) Pull only artifacts from `ci.yml` to resolve issue with conflicting package names. Co-authored-by: Chidozie Ononiwu <31145988+chidozieononiwu@users.noreply.github.com> --- eng/common/scripts/Package-Properties.ps1 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/eng/common/scripts/Package-Properties.ps1 b/eng/common/scripts/Package-Properties.ps1 index cda36d91e..7812414ae 100644 --- a/eng/common/scripts/Package-Properties.ps1 +++ b/eng/common/scripts/Package-Properties.ps1 @@ -155,7 +155,7 @@ function Get-PkgPropsForEntireService ($serviceDirectoryPath) } } - $ciYmlFiles = Get-ChildItem $serviceDirectoryPath -filter "ci.*yml" + $ciYmlFiles = Get-ChildItem $serviceDirectoryPath -filter "ci.yml" foreach($ciYmlFile in $ciYmlFiles) { $activeArtifactList = Get-ArtifactListFromYml -ciYmlPath $ciYmlFile.FullName @@ -192,4 +192,4 @@ function Get-ArtifactListFromYml ($ciYmlPath) $artifactsInCI = $ciYmlObj["extends"]["parameters"]["Artifacts"] } return $artifactsInCI -} \ No newline at end of file +}