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 f0d05a3 commit 83b992f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/debug.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,9 +56,9 @@ jobs:

- name: Grant execute permission for gradlew
run: chmod +x gradlew
- name: Create file
- name: Create Google Services File
run: cat /home/runner/work/MBCGroup/MBCGroup/app/google-services.json | base64
- name: Putting data
- name: Add data Google Services File
env:
DATA: ${{ secrets.GOOGLE_SERVICES_JSON }}
run: echo $DATA > /home/runner/work/MBCGroup/MBCGroup/app/google-services.json
Expand Down Expand Up @@ -97,7 +97,7 @@ jobs:
- name: Set RELEASE_NOTE
id: set_release_note
run: |
RELEASE_NOTE=$(if [ -z "${{ inputs.releaseNotes }}" ]; then cat release_notes.txt; else echo "${{ inputs.releaseNotes }}"; fi)
RELEASE_NOTE=$(if [ "${{ inputs.releaseNotes }}" =="" ]; then cat release_notes.txt; else "${{ inputs.releaseNotes }}"; fi)
echo "RELEASE_NOTE=$RELEASE_NOTE" >> $GITHUB_ENV
# - name: Execute validations
# run: ./gradlew executeValidations
Expand Down

0 comments on commit 83b992f

Please sign in to comment.