From 479d3e9f0709f2c474f0789b79085f024a3b3b1f Mon Sep 17 00:00:00 2001 From: Zoe Roux Date: Sat, 15 Jul 2023 23:59:04 +0900 Subject: [PATCH] Handle automatic store publish --- front/apps/mobile/eas.json | 3 ++- front/apps/mobile/package.json | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/front/apps/mobile/eas.json b/front/apps/mobile/eas.json index 0485adbf..4d2f0a33 100644 --- a/front/apps/mobile/eas.json +++ b/front/apps/mobile/eas.json @@ -1,6 +1,7 @@ { "cli": { - "version": ">= 3.0.0" + "version": ">= 3.0.0", + "appVersionSource": "remote" }, "build": { "development": { diff --git a/front/apps/mobile/package.json b/front/apps/mobile/package.json index cc7be89c..54415bb1 100644 --- a/front/apps/mobile/package.json +++ b/front/apps/mobile/package.json @@ -7,7 +7,7 @@ "android": "expo start --android", "ios": "expo start --ios", "web": "expo start --web", - "build": "eas build --profile production --platform android --non-interactive", + "build": "eas build --profile production --platform android --non-interactive --auto-submit", "build:dev": "eas build --profile development --platform android --non-interactive", "update": "eas update --auto --channel prod" },