Skip to content

Commit

Permalink
Merge pull request #1751 from ever-co/ci/mobile-devops
Browse files Browse the repository at this point in the history
Ci/mobile devops
  • Loading branch information
evereq authored Nov 9, 2023
2 parents 1230764 + 5df3dd2 commit 7a29fa2
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 37 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/mobile.prod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,10 @@ jobs:
- name: Upload to Play Store Console
run: cd apps/mobile && eas submit --platform android --latest --non-interactive

- name: Deploy to App Store
run: cd apps/mobile && eas submit --platform ios --latest --non-interactive
- name: Upload App build to App store
env:
EXPO_APPLE_APP_SPECIFIC_PASSWORD: ${{ secrets.EXPO_APPLE_APP_SPECIFIC_PASSWORD }}
ascAppId: ${{ secrets.APPLE_ID }}
ascApiKeyIssuerId: ${{ secrets.APPSTORE_ISSUER_ID }}

Check warning on line 91 in .github/workflows/mobile.prod.yml

View workflow job for this annotation

GitHub Actions / Cspell

Unknown word (APPSTORE)
ascApiKeyId: ${{ secrets.APPSTORE_API_KEY_ID }}

Check warning on line 92 in .github/workflows/mobile.prod.yml

View workflow job for this annotation

GitHub Actions / Cspell

Unknown word (APPSTORE)
ascApiKey: ${{ secrets.APPSTORE_API_PRIVATE_KEY }}

Check warning on line 93 in .github/workflows/mobile.prod.yml

View workflow job for this annotation

GitHub Actions / Cspell

Unknown word (APPSTORE)
run: cd apps/mobile && eas submit --platform ios --latest --non-interactive
64 changes: 30 additions & 34 deletions apps/mobile/eas.json
Original file line number Diff line number Diff line change
@@ -1,37 +1,33 @@
{
"build": {
"development": {
"extends": "production",
"developmentClient": true,
"distribution": "internal",
"ios": {
"simulator": true
},
"channel": "development"
},
"preview": {
"extends": "production",
"distribution": "internal",
"channel": "preview",
"build": {
"development": {
"extends": "production",
"developmentClient": true,
"distribution": "internal",
"ios": {
"simulator": true
}
},
"production": {
"channel": "production"
}
},
"submit":{
"production":{
"android":{
"track":"internal",
"releaseStatus":"draft",
"changesNotSentForReview":false
},
"ios":{
"ascAppId":"6471266037",
"appleId":"6471266037"
}
}
}
"simulator": true
},
"channel": "development"
},
"preview": {
"extends": "production",
"distribution": "internal",
"channel": "preview",
"ios": {
"simulator": true
}
},
"production": {
"channel": "production"
}
},
"submit": {
"production": {
"android": {
"track": "internal",
"releaseStatus": "draft",
"changesNotSentForReview": false
}
}
}
}

0 comments on commit 7a29fa2

Please sign in to comment.