Skip to content

Commit e04d6f1

Browse files
committed
feat: Add detached mode to Railway deployments
Add '-d' flag to Railway deployment commands for ERPC and Monitor services to run in detached mode. This change allows the services to continue running after the deployment process completes, ensuring continuous operation without manual intervention.
1 parent e227c91 commit e04d6f1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/deploy.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,5 +15,5 @@ jobs:
1515
RAILWAY_TOKEN: ${{ secrets.RAILWAY_TOKEN }}
1616
steps:
1717
- uses: actions/checkout@v3
18-
- run: railway up --service=${{ env.SVC_ID_ERPC }}
19-
- run: railway up --service=${{ env.SVC_ID_MONITOR }}
18+
- run: railway up -d --service=${{ env.SVC_ID_ERPC }}
19+
- run: railway up -d --service=${{ env.SVC_ID_MONITOR }}

0 commit comments

Comments
 (0)