Skip to content

Commit

Permalink
Update debug.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
cesarwillymc committed Jan 19, 2024
1 parent 7a510d5 commit 21d8720
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/debug.yml
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,13 @@ jobs:
run: |
echo "RELEASE_NOTE: $RELEASE_NOTE_TEXT"
- name: Build App
run: ./gradlew assemble${{ (inputs.buildType || 'debug')^ }}
run: |
if [[ ${{ inputs.buildType || 'debug' }} == "debug" ]]; then
./gradlew assembleDebug
else
./gradlew assembleRelease
fi
env:
DEBUG_KEY_PASSWORD: ${{ secrets.DEBUG_KEY_PASSWORD }}
- name: upload artifact to Firebase App Distribution
Expand Down

0 comments on commit 21d8720

Please sign in to comment.