chore: fix CI

This commit is contained in:
2026-05-03 21:18:57 +02:00
parent cf28fad1a9
commit 48c8e0ea66
2 changed files with 1 additions and 2 deletions
+1 -1
View File
@@ -70,7 +70,7 @@ jobs:
working-directory: mobile
env:
EAS_BUILD_NO_EXPO_GO_WARNING: true
run: ${{ (github.ref == 'refs/heads/main' || github.base_ref == 'main') && --profile production || --profile preview }} eas build --platform android --profile production --non-interactive
run: eas build --platform android ${{ (github.ref == 'refs/heads/main' || github.base_ref == 'main') && '--profile production' || '--profile preview' }} --non-interactive
- name: Download production APK
working-directory: mobile
-1
View File
@@ -13,7 +13,6 @@ const apiClient = axios.create({
});
apiClient.interceptors.request.use(async (config) => {
// Determine which token to use based on URL
const isAdminRoute =
config.url?.includes("/api/v2/") ||
config.url?.includes("/api/v1/cabine/") ||