ci: add debug output for .env content to troubleshoot multiline variable
Deploy PR-Helper / deploy (push) Successful in 25s

This commit is contained in:
2026-06-21 14:34:24 +08:00
parent 20be99b287
commit 1cd4aa899a
+5 -1
View File
@@ -23,7 +23,11 @@ jobs:
- name: Write .env
env:
DEPLOY_ENV: ${{ variables.DEPLOY_ENV }}
run: echo "$DEPLOY_ENV" > .env
run: |
echo "$DEPLOY_ENV" > .env
echo "--- .env content ---"
cat .env
echo "--- end ---"
- name: Build & Deploy
run: |