We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0581cec commit 1705920Copy full SHA for 1705920
.github/workflows/reusable_build_sample_apps.yml
@@ -56,8 +56,8 @@ jobs:
56
# Append distribution groups based on branch and context if the app is primary
57
if [[ "$IS_PRIMARY_APP" == "true" ]]; then
58
[[ "$CURRENT_BRANCH" == "refs/heads/feature/"* ]] && distribution_groups+=("$FEATURE_BUILDS_GROUP")
59
- [[ "$CURRENT_BRANCH" == "refs/heads/main" ]] && distribution_groups+=("NEXT_BUILDS_GROUP")
60
- [[ "$USE_LATEST_SDK_VERSION" == "true" ]] && distribution_groups+=("PUBLIC_BUILDS_GROUP")
+ [[ "$CURRENT_BRANCH" == "refs/heads/main" ]] && distribution_groups+=("$NEXT_BUILDS_GROUP")
+ [[ "$USE_LATEST_SDK_VERSION" == "true" ]] && distribution_groups+=("$PUBLIC_BUILDS_GROUP")
61
fi
62
63
# Export the groups as an environment variable
0 commit comments