Skip to content

Commit ac4beb7

Browse files
author
Neil Munoz
committed
fix: update workflow references from Railway to Vercel
- Update pre-deployment validation to check Vercel files - Fix final success message to mention Vercel - Correct job comment to reflect Vercel deployment - Ensure all Railway references are removed from workflow
1 parent bdbd785 commit ac4beb7

File tree

1 file changed

+9
-15
lines changed

1 file changed

+9
-15
lines changed

.github/workflows/production-pipeline.yml

Lines changed: 9 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -285,25 +285,19 @@ jobs:
285285
286286
- name: 🔍 Configuration Validation
287287
run: |
288-
echo "Validating Railway configuration..."
289-
if [ ! -f "railway.json" ]; then
290-
echo "❌ railway.json not found!"
288+
echo "Validating Vercel configuration..."
289+
if [ ! -f "vercel.json" ]; then
290+
echo "❌ vercel.json not found!"
291291
exit 1
292292
fi
293293
294-
echo "Validating Docker configuration..."
295-
if [ ! -f "Dockerfile" ]; then
296-
echo "❌ Dockerfile not found!"
294+
echo "Validating Vercel API directory..."
295+
if [ ! -d "api" ]; then
296+
echo "❌ api/ directory not found!"
297297
exit 1
298298
fi
299299
300-
echo "Validating startup script..."
301-
if [ ! -f "start.sh" ]; then
302-
echo "❌ start.sh not found!"
303-
exit 1
304-
fi
305-
306-
echo "✅ All configuration files validated successfully!"
300+
echo "✅ All Vercel configuration files validated successfully!"
307301
308302
- name: 🏥 Health Check Endpoint Test
309303
run: |
@@ -316,7 +310,7 @@ jobs:
316310
"
317311
318312
# ============================================================================
319-
# 6. RAILWAY DEPLOYMENT (Production Only)
313+
# 6. VERCEL DEPLOYMENT (Production Only)
320314
# ============================================================================
321315
vercel-deployment:
322316
name: 🚀 Vercel Production Deployment
@@ -490,5 +484,5 @@ jobs:
490484
echo " ✅ Vercel Production Deployment"
491485
echo " ✅ Post-Deployment Monitoring"
492486
echo ""
493-
echo "🚀 Banking application successfully deployed to Railway!"
487+
echo "🚀 Banking application successfully deployed to Vercel!"
494488
echo "🌟 All admin panel functionalities validated and operational"

0 commit comments

Comments
 (0)