youssefreda9 commited on
Commit
02b9510
·
1 Parent(s): 156b741

Fix CI: Remove deleted build.py reference from deploy workflow

Browse files
Files changed (1) hide show
  1. .github/workflows/deploy.yml +3 -9
.github/workflows/deploy.yml CHANGED
@@ -36,16 +36,10 @@ jobs:
36
  print('✅ All critical API routes registered')
37
  "
38
 
39
- - name: Validate build script
40
- env:
41
- SUPABASE_URL: "https://test.supabase.co"
42
- SUPABASE_ANON_KEY: "test-key-1234"
43
- run: python build.py
44
-
45
- - name: Verify index.html was modified
46
  run: |
47
- grep -q "https://test.supabase.co" src/index.html && echo "✅ Supabase URL injected" || exit 1
48
- grep -q "test-key-1234" src/index.html && echo "✅ Supabase key injected" || exit 1
49
 
50
  health-check:
51
  name: Post-Deploy Health Check
 
36
  print('✅ All critical API routes registered')
37
  "
38
 
39
+ - name: Validate Supabase meta tags exist
 
 
 
 
 
 
40
  run: |
41
+ grep -q 'supabase-url' src/index.html && echo "✅ Supabase URL meta tag present" || exit 1
42
+ grep -q 'supabase-anon-key' src/index.html && echo "✅ Supabase key meta tag present" || exit 1
43
 
44
  health-check:
45
  name: Post-Deploy Health Check