From 83b992f37b2ac0f7766e3d9afd13eae4d3e3be55 Mon Sep 17 00:00:00 2001 From: Cesar Willy Mamani Canaza Date: Fri, 19 Jan 2024 12:19:13 -0600 Subject: [PATCH] Update debug.yml --- .github/workflows/debug.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/debug.yml b/.github/workflows/debug.yml index 8973080..acd0711 100644 --- a/.github/workflows/debug.yml +++ b/.github/workflows/debug.yml @@ -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 @@ -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