Skip to content

chore: Test deploy with project token #10

chore: Test deploy with project token

chore: Test deploy with project token #10

Workflow file for this run

name: Deploy to Railway
on:
push:
branches: [main]
paths:
- 'api/**'
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install Railway CLI
run: npm install -g @railway/cli
- name: Deploy to Railway
run: |
cd api
railway up --service agentbets-api
env:
RAILWAY_TOKEN: ${{ secrets.RAILWAY_TOKEN }}