mirror of
https://github.com/0xWheatyz/handler.git
synced 2026-08-30 16:36:24 +00:00
c49cdda462
- .github/workflows/mobile-release.yml: validate (npm ci + tsc) on every run with no secrets, plus an EAS Build job gated on workflow_dispatch or a `mobile-v*` tag. Requires only the EXPO_TOKEN secret. - app/eas.json: development / preview (iOS simulator, no Apple account) / production (signed, EAS-managed Apple credentials) build profiles.
25 lines
392 B
JSON
25 lines
392 B
JSON
{
|
|
"cli": {
|
|
"version": ">= 12.0.0",
|
|
"appVersionSource": "local"
|
|
},
|
|
"build": {
|
|
"development": {
|
|
"developmentClient": true,
|
|
"distribution": "internal"
|
|
},
|
|
"preview": {
|
|
"distribution": "internal",
|
|
"ios": {
|
|
"simulator": true
|
|
}
|
|
},
|
|
"production": {
|
|
"autoIncrement": true
|
|
}
|
|
},
|
|
"submit": {
|
|
"production": {}
|
|
}
|
|
}
|