Skip to content

Commit 529c55b

Browse files
committed
Add debug output to verify secrets
1 parent 4c74d50 commit 529c55b

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/workflows/ai-config-validation.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -424,7 +424,10 @@ jobs:
424424
LD_PROJECT_KEY: ${{ secrets.LD_PROJECT_KEY }}
425425
run: |
426426
echo "🔄 Syncing AI configs from LaunchDarkly production..."
427-
echo "Project: $LD_PROJECT_KEY"
427+
echo "DEBUG - First 10 chars of project key: ${LD_PROJECT_KEY:0:10}"
428+
echo "DEBUG - Project key length: ${#LD_PROJECT_KEY}"
429+
echo "DEBUG - API key starts with: ${LD_API_KEY:0:8}"
430+
echo "DEBUG - API key length: ${#LD_API_KEY}"
428431
echo "Environment: production"
429432
430433
mkdir -p configs

0 commit comments

Comments
 (0)