Skip to content

Commit

Permalink
chore: fix
Browse files Browse the repository at this point in the history
  • Loading branch information
im-adithya committed Feb 7, 2025
1 parent 611b752 commit 8dacce4
Showing 1 changed file with 3 additions and 8 deletions.
11 changes: 3 additions & 8 deletions .github/workflows/pull_requests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,18 +31,13 @@ jobs:

- name: 📁 Create google-services.json file
run: |
mkdir -p android/app
printf '%s' "${{ secrets.GOOGLE_SERVICES_JSON }}" > android/app/google-services.json
- name: Debug google-services.json
run: |
echo "File size is: $(du -b android/app/google-services.json || true) bytes"
head -n 5 android/app/google-services.json || true
mkdir -p tmp
printf '%s' "${{ secrets.GOOGLE_SERVICES_JSON }}" > tmp/google-services.json
- name: 🚀 Build app
run: eas build --non-interactive --platform android --local --profile preview --output=./app-release.apk
env:
GOOGLE_SERVICES_JSON: "./android/app/google-services.json"
GOOGLE_SERVICES_JSON: "./tmp/google-services.json"

- name: 🧪 Run tests
run: yarn test:ci
Expand Down

0 comments on commit 8dacce4

Please sign in to comment.