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 ed1cdd6 commit f801af7
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions .github/workflows/debug.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,12 +69,8 @@ jobs:
BASE_URL_GQL: ${{ secrets.BASE_URL_GQL }}
CLIENT_ID: ${{ secrets.CLIENT_ID }}
CLIENT_SECRET: ${{ secrets.CLIENT_SECRET }}
APP_ID: |
if [[ "${{ inputs.buildType || 'debug' }}" == "debug" ]]; then
${{ secrets.APP_ID_DEBUG }}
else
${{ secrets.APP_ID_RELEASE }}
fi
APP_ID: ${{ if(eq(inputs.buildType, 'debug'), secrets.APP_ID_DEBUG, secrets.APP_ID_RELEASE) }}

run: |
echo "SHARED_PREFERENCES_NAME=$SHARED_PREFERENCES_NAME" >> local.properties
echo "BASE_URL=$BASE_URL" >> local.properties
Expand Down

0 comments on commit f801af7

Please sign in to comment.