Files
blackroad-operating-system/.github/workflows/railway-deploy.yml
Alexa Louise c00b6ee2a1 fix: Add Railway deployment configs and GitHub workflows
- Add Railway configuration (railway.toml)
- Add GitHub Actions workflows
  - Railway deployment automation
  - Python/Node.js testing
  - Health check monitoring
- Add GitHub templates (CODEOWNERS, PR template)
- Add requirements files if missing
- Standardize deployment across all services

This ensures consistent deployment patterns across the entire
BlackRoad OS infrastructure.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-12-10 15:35:09 -06:00

48 lines
1.2 KiB
YAML

name: Deploy to Railway
on:
push:
branches: [main, master, production]
pull_request:
branches: [main, master, production]
workflow_dispatch:
env:
RAILWAY_TOKEN: ${{ secrets.RAILWAY_TOKEN }}
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Install Railway CLI
run: npm install -g @railway/cli
- name: Deploy to Railway
run: |
if [ -f railway.toml ] || [ -f railway.json ]; then
echo "✅ Railway config found, deploying..."
railway up
else
echo "⚠️ No Railway config found, skipping deployment"
fi
env:
RAILWAY_TOKEN: ${{ secrets.RAILWAY_TOKEN }}
- name: Health Check
if: success()
run: |
echo "Waiting for deployment to be ready..."
sleep 30
# Get deployment URL from Railway
DEPLOYMENT_URL=$(railway status --json | jq -r '.deployments[0].url' || echo "")
if [ -n "$DEPLOYMENT_URL" ]; then
echo "Testing health endpoint at: $DEPLOYMENT_URL/health"
curl -f "$DEPLOYMENT_URL/health" || echo "⚠️ Health check not available"
fi