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
|
name: Native build
|
||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
branches:
|
|
||||||
- master
|
|
||||||
- next
|
|
||||||
tags:
|
tags:
|
||||||
- v*
|
- v*
|
||||||
|
|
||||||
@ -43,7 +40,7 @@ jobs:
|
|||||||
run: yarn install --immutable
|
run: yarn install --immutable
|
||||||
|
|
||||||
- name: Build Mobile Release
|
- name: Build Mobile Release
|
||||||
run: yarn build:mobile | tee log.txt
|
run: yarn build:mobile:apk | tee log.txt
|
||||||
|
|
||||||
- name: Parse Asset URL
|
- name: Parse Asset URL
|
||||||
id: url
|
id: url
|
||||||
|
@ -14,7 +14,10 @@
|
|||||||
},
|
},
|
||||||
"preview": {
|
"preview": {
|
||||||
"distribution": "internal",
|
"distribution": "internal",
|
||||||
"channel": "preview"
|
"channel": "preview",
|
||||||
|
"android": {
|
||||||
|
"buildType": "apk"
|
||||||
|
}
|
||||||
},
|
},
|
||||||
"production": {
|
"production": {
|
||||||
"channel": "prod"
|
"channel": "prod"
|
||||||
|
@ -9,6 +9,7 @@
|
|||||||
"ios": "expo start --ios",
|
"ios": "expo start --ios",
|
||||||
"web": "expo start --web",
|
"web": "expo start --web",
|
||||||
"build": "eas build --profile production --platform android --non-interactive --auto-submit",
|
"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",
|
"build:dev": "eas build --profile development --platform android --non-interactive",
|
||||||
"update": "eas update --auto --channel prod"
|
"update": "eas update --auto --channel prod"
|
||||||
},
|
},
|
||||||
|
@ -7,6 +7,7 @@
|
|||||||
"mobile": "yarn workspace mobile dev",
|
"mobile": "yarn workspace mobile dev",
|
||||||
"build:web": "yarn workspace web build",
|
"build:web": "yarn workspace web build",
|
||||||
"build:mobile": "yarn workspace mobile build",
|
"build:mobile": "yarn workspace mobile build",
|
||||||
|
"build:mobile:apk": "yarn workspace mobile build:apk",
|
||||||
"build:mobile:dev": "yarn workspace mobile build:dev",
|
"build:mobile:dev": "yarn workspace mobile build:dev",
|
||||||
"update": "yarn workspace mobile update",
|
"update": "yarn workspace mobile update",
|
||||||
"lint": "eslint .",
|
"lint": "eslint .",
|
||||||
|
Loading…
x
Reference in New Issue
Block a user