Skip to content

Commit 9289c0a

Browse files
authored
Merge pull request #27 from klaviyo/debug/check-env-file
Add debug step to check .env file contents
2 parents 90eeca5 + 9d3cdec commit 9289c0a

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

.github/workflows/deploy.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,11 @@ jobs:
3535
echo "MONITORING_PROFILE_ID=${{ secrets.MONITORING_PROFILE_ID }}" >> .env
3636
echo "DEBUG_ACCOUNT_IDS=${{ secrets.DEBUG_ACCOUNT_IDS }}" >> .env
3737
38+
- name: Debug - Check .env file
39+
run: |
40+
echo "DEBUG_ACCOUNT_IDS value in .env:"
41+
grep DEBUG_ACCOUNT_IDS .env || echo "Not found"
42+
3843
- name: Build all integrations
3944
run: npm run build
4045

0 commit comments

Comments
 (0)