Skip to content

Commit

Permalink
chore: changed android build command based on type
Browse files Browse the repository at this point in the history
  • Loading branch information
ignaciosantise committed Apr 26, 2024
1 parent 9337d0d commit febf5e2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/release-android-base.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -93,10 +93,10 @@ jobs:

- name: Build APK
run: |
if [ "${{ inputs.release-type }}" = "internal" ]; then
cd ${{ inputs.root-path }} && yarn install && yarn run android:build:internal
if [ ${{ inputs.release-type }} = 'internal' ]; then
cd ${{ inputs.root-path }} && yarn install && yarn run android:build:internal
else
cd ${{ inputs.root-path }} && yarn install && yarn run android:build
cd ${{ inputs.root-path }} && yarn install && yarn run android:build
fi
- name: Setup Firebase
Expand Down

0 comments on commit febf5e2

Please sign in to comment.