From 7d16c799d8773324967b313b4802d47b17e37907 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gabriel=20Font=C3=A1n?= Date: Thu, 15 Aug 2024 18:39:27 +0200 Subject: [PATCH] fix: Removed unnecessary `i` flag from base64 command MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The `i` flag in the `base64` command was unnecessary and caused issues with decoding the Google Services JSON file. This commit removes the flag to ensure proper decoding. Signed-off-by: Gabriel Fontán --- .github/workflows/android_ci.yml | 2 +- .github/workflows/codeql.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/android_ci.yml b/.github/workflows/android_ci.yml index caf7988..0e2d311 100644 --- a/.github/workflows/android_ci.yml +++ b/.github/workflows/android_ci.yml @@ -31,7 +31,7 @@ jobs: - name: Create Google Service file env: DATA: ${{ secrets.GOOGLE_SERVICES_JSON }} - run: echo $DATA | base64 -di > app/google-services.json + run: echo $DATA | base64 -d > app/google-services.json - uses: gradle/actions/setup-gradle@v3 diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml index 78f5761..e10086a 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -59,7 +59,7 @@ jobs: - name: Create Google Service file env: DATA: ${{ secrets.GOOGLE_SERVICES_JSON }} - run: echo $DATA | base64 -di > app/google-services.json + run: echo $DATA | base64 -d > app/google-services.json # Initialize CodeQL tools for scanning