Skip to content

Commit

Permalink
UPDATE: Build Production
Browse files Browse the repository at this point in the history
  • Loading branch information
godkingjay committed Jan 9, 2023
1 parent 3edbf72 commit 083f47a
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build-app.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Build
name: Build App

on:
push:
Expand Down Expand Up @@ -29,4 +29,4 @@ jobs:
run: yarn install

- name: Build Android APK Bundle
run: eas build --platform android
run: eas build --profile production --platform android
13 changes: 11 additions & 2 deletions eas.json
Original file line number Diff line number Diff line change
@@ -1,18 +1,27 @@
{
"build": {
"preview": {
"development": {
"developmentClient": true,
"distribution": "internal"
},
"production": {
"android": {
"buildType": "apk"
}
},
"preview": {
"distribution": "internal"
},
"preview2": {
"android": {
"gradleCommand": ":app:assembleRelease"
}
},
"preview3": {
"developmentClient": true
},
}
},
"submit": {
"production": {}
}
}

0 comments on commit 083f47a

Please sign in to comment.