From 660c7a785a68dec93b3fe8ab80d2dfcd4f70d792 Mon Sep 17 00:00:00 2001 From: Muhammad Rehan Date: Tue, 14 Jan 2025 18:42:35 +0500 Subject: [PATCH] chore: fix sample app groups action typo (#195) --- .github/workflows/build-sample-apps.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build-sample-apps.yml b/.github/workflows/build-sample-apps.yml index 9a29c5f..2d0b9ac 100644 --- a/.github/workflows/build-sample-apps.yml +++ b/.github/workflows/build-sample-apps.yml @@ -81,8 +81,8 @@ jobs: # Append distribution groups based on branch and context [[ "$CURRENT_BRANCH" == "refs/heads/feature/"* ]] && distribution_groups+=("$FEATURE_BUILDS_GROUP") - [[ "$CURRENT_BRANCH" == "refs/heads/main" ]] && distribution_groups+=("NEXT_BUILDS_GROUP") - [[ "$CURRENT_BRANCH" == "refs/heads/main" ]] && distribution_groups+=("PUBLIC_BUILDS_GROUP") + [[ "$CURRENT_BRANCH" == "refs/heads/main" ]] && distribution_groups+=("$NEXT_BUILDS_GROUP") + [[ "$CURRENT_BRANCH" == "refs/heads/main" ]] && distribution_groups+=("$PUBLIC_BUILDS_GROUP") # Export the groups as an environment variable echo "firebase_distribution_groups=$(IFS=','; echo "${distribution_groups[*]}")" >> $GITHUB_ENV