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 7e238ab commit 5e46348
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/debug.yml
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,6 @@ jobs:
echo "BASE_URL_GQL=$BASE_URL_GQL" >> local.properties
echo "CLIENT_ID=$CLIENT_ID" >> local.properties
echo "CLIENT_SECRET=$CLIENT_SECRET" >> local.properties
echo "APP_ID=${{ if(eq(inputs.buildType, 'debug'), secrets.APP_ID_DEBUG, secrets.APP_ID_RELEASE) }}" >> $GITHUB_ENV
- name: Set RELEASE_NOTE
id: set_release_note
run: |
Expand All @@ -88,6 +87,7 @@ jobs:
echo "RELEASE_NOTE_TEXT<<EOF" >> $GITHUB_ENV
echo $RELEASE_NOTE >> $GITHUB_ENV
echo "EOF" >> $GITHUB_ENV
echo "APP_ID_TEXT=$(if [ '${{ inputs.buildType }}' == 'debug' ]; then echo '${{ secrets.APP_ID_DEBUG }}'; else echo '${{ secrets.APP_ID_RELEASE }}'; fi)" >> $GITHUB_ENV
# - name: Execute validations
# run: ./gradlew executeValidations
- name: Debug RELEASE_NOTE
Expand Down

0 comments on commit 5e46348

Please sign in to comment.