mirror of
https://github.com/blackboxprogramming/BlackRoad-Operating-System.git
synced 2026-03-17 07:57:19 -05:00
- 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>
48 lines
1.2 KiB
YAML
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
|