Set up Expo OTA updates and CI workflows
CodexBar Mobile Build / build-android (push) Has been cancelled
CodexBar Mobile Build / release (push) Has been cancelled

This commit is contained in:
Space-Banane
2026-07-04 19:34:22 +02:00
parent dc7e497388
commit 896f9149f1
6 changed files with 177 additions and 1 deletions
+6 -1
View File
@@ -18,6 +18,7 @@
"expo-splash-screen": "~56.0.10",
"expo-status-bar": "~56.0.4",
"expo-system-ui": "~56.0.5",
"expo-updates": "~56.0.21",
"nativewind": "^4.2.6",
"react": "19.2.3",
"react-dom": "^19.2.3",
@@ -37,7 +38,11 @@
"start": "expo start",
"android": "expo start --android",
"ios": "expo start --ios",
"web": "expo start --web"
"web": "expo start --web",
"update:preview": "eas update --channel preview --environment preview",
"update:production": "eas update --channel production --environment production",
"build:android:preview": "eas build --platform android --profile preview --non-interactive",
"build:android:production": "eas build --platform android --profile production --non-interactive"
},
"private": true
}