We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2a07329 commit a3dfc18Copy full SHA for a3dfc18
.github/workflows/deploy.yml
@@ -18,12 +18,12 @@ jobs:
18
- name: Verify Railway CLI Version
19
run: railway --version
20
21
- - name: Install Docker Compose
+ - name: Deploy Frontend Service
22
run: |
23
- sudo apt-get update
24
- sudo apt-get install -y docker-compose
+ echo "Deploying frontend service"
+ railway up --service frontend
25
26
- - name: Deploy with Docker Compose
+ - name: Deploy Backend Service
27
28
- echo "Deploying profound-sparkle with docker-compose"
29
- railway run --service profound-sparkle docker-compose up --build -d
+ echo "Deploying backend service"
+ railway up --service backend
0 commit comments