diff options
Diffstat (limited to 'eas.json')
-rw-r--r-- | eas.json | 34 |
1 files changed, 30 insertions, 4 deletions
diff --git a/eas.json b/eas.json index 2b4c7cb61..ed647dbb9 100644 --- a/eas.json +++ b/eas.json @@ -16,14 +16,20 @@ "ios": { "simulator": true, "resourceClass": "large" + }, + "env": { + "EXPO_PUBLIC_ENV": "production" } }, "preview": { "extends": "base", "distribution": "internal", - "channel": "preview", + "channel": "production", "ios": { "resourceClass": "large" + }, + "env": { + "EXPO_PUBLIC_ENV": "production" } }, "production": { @@ -35,17 +41,37 @@ "android": { "autoIncrement": true }, - "channel": "production" + "channel": "production", + "env": { + "EXPO_PUBLIC_ENV": "production" + } + }, + "testflight": { + "extends": "base", + "ios": { + "autoIncrement": true + }, + "android": { + "autoIncrement": true + }, + "channel": "testflight", + "env": { + "EXPO_PUBLIC_ENV": "testflight" + } }, - "github": { + "testflight-android": { "extends": "base", + "distribution": "internal", "ios": { "autoIncrement": true }, "android": { "autoIncrement": true }, - "channel": "production" + "channel": "testflight", + "env": { + "EXPO_PUBLIC_ENV": "testflight" + } } }, "submit": { |