Skip to content

Commit

Permalink
fix: Removed unnecessary i flag from base64 command
Browse files Browse the repository at this point in the history
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 <[email protected]>
  • Loading branch information
BobbyESP committed Aug 15, 2024
1 parent 6897a3e commit 7d16c79
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/android_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 7d16c79

Please sign in to comment.