Build apk files instead of aab builds

This commit is contained in:
Zoe Roux 2023-12-20 04:17:14 +01:00
parent 9963bf6179
commit 5ae386bac3
4 changed files with 7 additions and 5 deletions

View File

@ -1,9 +1,6 @@
name: Native build
on:
push:
branches:
- master
- next
tags:
- v*
@ -43,7 +40,7 @@ jobs:
run: yarn install --immutable
- name: Build Mobile Release
run: yarn build:mobile | tee log.txt
run: yarn build:mobile:apk | tee log.txt
- name: Parse Asset URL
id: url

View File

@ -14,7 +14,10 @@
},
"preview": {
"distribution": "internal",
"channel": "preview"
"channel": "preview",
"android": {
"buildType": "apk"
}
},
"production": {
"channel": "prod"

View File

@ -9,6 +9,7 @@
"ios": "expo start --ios",
"web": "expo start --web",
"build": "eas build --profile production --platform android --non-interactive --auto-submit",
"build:apk": "eas build --profile preview --platform android --non-interactive",
"build:dev": "eas build --profile development --platform android --non-interactive",
"update": "eas update --auto --channel prod"
},

View File

@ -7,6 +7,7 @@
"mobile": "yarn workspace mobile dev",
"build:web": "yarn workspace web build",
"build:mobile": "yarn workspace mobile build",
"build:mobile:apk": "yarn workspace mobile build:apk",
"build:mobile:dev": "yarn workspace mobile build:dev",
"update": "yarn workspace mobile update",
"lint": "eslint .",