Skip to content

Commit 0a3ec09

Browse files
committed
🐛 fix(ci): env variables
1 parent 63b42ac commit 0a3ec09

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

.github/workflows/ci-cd.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,17 @@ jobs:
107107
EXPO_PUBLIC_BUILD_ENV: production
108108
run: |
109109
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
110118
npm run build:version
119+
echo "\n--- constants/version.ts (after build-version) ---"
120+
cat constants/version.ts
111121
npm run build
112122
113123
- name: 🏗️ Build Server

0 commit comments

Comments
 (0)