Skip to content

Commit

Permalink
fix yml again
Browse files Browse the repository at this point in the history
  • Loading branch information
mrehan27 committed Jan 10, 2025
1 parent 50ecf83 commit 4b49be7
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/reusable_build_sample_apps.yml
Original file line number Diff line number Diff line change
Expand Up @@ -104,9 +104,11 @@ jobs:
lane: ${{ inputs.use_latest_sdk_version == true && 'android build_sample_app_for_sdk_release' || 'android build' }}
subdirectory: "samples/${{ matrix.sample-app }}"
options: ${{
inputs.use_latest_sdk_version == true &&
format('{{"sdk_version":"{0}","distribution_groups":"{1}"}}', steps.latest-sdk-version-step.outputs.LATEST_TAG, env.firebase_distribution_groups) ||
format('{{"distribution_groups":"{0}"}}', env.firebase_distribution_groups)
format(inputs.use_latest_sdk_version == true
? '{{"sdk_version":"{0}","distribution_groups":"{1}"}}' : '{{"distribution_groups":"{1}"}}',
steps.latest-sdk-version-step.outputs.LATEST_TAG) || '',
env.firebase_distribution_groups
)
}}
env:
ANDROID_SIGNING_ALIAS: ${{ secrets.ANDROID_SIGNING_ALIAS }}
Expand Down

0 comments on commit 4b49be7

Please sign in to comment.