mirror of
https://github.com/zoriya/Kyoo.git
synced 2025-07-09 03:04:20 -04:00
Build apk files instead of aab builds
This commit is contained in:
parent
9963bf6179
commit
5ae386bac3
5
.github/workflows/native-build.yml
vendored
5
.github/workflows/native-build.yml
vendored
@ -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
|
||||
|
@ -14,7 +14,10 @@
|
||||
},
|
||||
"preview": {
|
||||
"distribution": "internal",
|
||||
"channel": "preview"
|
||||
"channel": "preview",
|
||||
"android": {
|
||||
"buildType": "apk"
|
||||
}
|
||||
},
|
||||
"production": {
|
||||
"channel": "prod"
|
||||
|
@ -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"
|
||||
},
|
||||
|
@ -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 .",
|
||||
|
Loading…
x
Reference in New Issue
Block a user