We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 63b42ac commit 0a3ec09Copy full SHA for 0a3ec09
.github/workflows/ci-cd.yml
@@ -107,7 +107,17 @@ jobs:
107
EXPO_PUBLIC_BUILD_ENV: production
108
run: |
109
cd client
110
+ echo "\n--- ENVIRONMENT VARIABLES ---"
111
+ printenv | sort
112
+ echo "\n--- constants/api.ts ---"
113
+ cat constants/api.ts
114
+ echo "\n--- constants/version.ts ---"
115
+ cat constants/version.ts
116
+ echo "\n--- .env.local (if exists) ---"
117
+ if [ -f .env.local ]; then cat .env.local; else echo "(no .env.local)"; fi
118
npm run build:version
119
+ echo "\n--- constants/version.ts (after build-version) ---"
120
121
npm run build
122
123
- name: 🏗️ Build Server
0 commit comments