Skip to content

Commit a415d3d

Browse files
committed
ci: add Railway deployment workflow
1 parent df40fcb commit a415d3d

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name: Railway Deploy
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
- 'claude/**'
8+
workflow_dispatch:
9+
10+
jobs:
11+
deploy:
12+
name: Deploy to Railway
13+
runs-on: ubuntu-latest
14+
15+
steps:
16+
- name: Checkout
17+
uses: actions/checkout@v4
18+
19+
- name: Install Railway CLI
20+
run: curl -fsSL https://railway.app/install.sh | sh
21+
22+
- name: Deploy to Railway
23+
run: railway up --detach
24+
env:
25+
RAILWAY_TOKEN: ${{ secrets.RAILWAY_TOKEN }}

0 commit comments

Comments
 (0)