Commit ·
02b9510
1
Parent(s): 156b741
Fix CI: Remove deleted build.py reference from deploy workflow
Browse files
.github/workflows/deploy.yml
CHANGED
|
@@ -36,16 +36,10 @@ jobs:
|
|
| 36 |
print('✅ All critical API routes registered')
|
| 37 |
"
|
| 38 |
|
| 39 |
-
- name: Validate
|
| 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
|
| 48 |
-
grep -q
|
| 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
|