Skip to content

Commit

Permalink
🚚 cd: submit app build to google play store
Browse files Browse the repository at this point in the history
  • Loading branch information
JohnPetros committed Jun 17, 2024
1 parent 99c2bc5 commit 961b589
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions .github/workflows/cd.yaml
Original file line number Diff line number Diff line change
@@ -32,5 +32,12 @@ jobs:
- name: Install dependencies
run: npm install

- name: Build
run: eas build --platform android --profile development --non-interactive --no-wait
- name: Google Play API key JSON generation
env:
GOOGLE_PLAY_API_KEY: ${{ secrets.GOOGLE_PLAY_API_KEY }}
run: |
echo $GOOGLE_PLAY_API_KEY > google-play-api-key.base64
base64 -d -i google-play-api-key.base64 > google-play-api-key.json
- name: Build and submit
run: eas build --platform android --profile production --non-interactive --auto-submit-with-profile=deploy --no-wait

0 comments on commit 961b589

Please sign in to comment.