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 046972c commit 7a510d5
Showing 1 changed file with 1 addition and 8 deletions.
9 changes: 1 addition & 8 deletions .github/workflows/debug.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,13 +69,6 @@ jobs:
BASE_URL_GQL: ${{ secrets.BASE_URL_GQL }}
CLIENT_ID: ${{ secrets.CLIENT_ID }}
CLIENT_SECRET: ${{ secrets.CLIENT_SECRET }}
BUILD_TYPE_VALUE: |
if [[ ${{ inputs.buildType || 'debug' }} == "debug" ]]; then
"Debug"
else
"Release"
fi
APP_ID: |
if [[ ${{ inputs.buildType || 'debug' }} == "debug" ]]; then
${{secrets.APP_ID_DEBUG}}
Expand Down Expand Up @@ -105,7 +98,7 @@ jobs:
run: |
echo "RELEASE_NOTE: $RELEASE_NOTE_TEXT"
- name: Build App
run: ./gradlew assemble${BUILD_TYPE_VALUE}
run: ./gradlew assemble${{ (inputs.buildType || 'debug')^ }}
env:
DEBUG_KEY_PASSWORD: ${{ secrets.DEBUG_KEY_PASSWORD }}
- name: upload artifact to Firebase App Distribution
Expand Down

0 comments on commit 7a510d5

Please sign in to comment.