mirror of
https://github.com/Xevion/Pac-Man.git
synced 2025-12-05 23:15:40 -06:00
fix(ci): use railway redeploy instead of railway up
Changed deployment command from `railway up` to `railway redeploy` because the Railway service is configured to use an external Docker image from GHCR, not source code deployment. The `railway up` command was attempting to build from source with Railpack, which failed since no source code was provided. The `railway redeploy` command triggers Railway to pull the latest image from ghcr.io/xevion/pac-man:latest and redeploy the service.
This commit is contained in:
2
.github/workflows/deploy.yaml
vendored
2
.github/workflows/deploy.yaml
vendored
@@ -130,4 +130,4 @@ jobs:
|
||||
RAILWAY_TOKEN: ${{ secrets.RAILWAY_TOKEN }}
|
||||
steps:
|
||||
- name: Deploy to Railway
|
||||
run: railway up --service pac-man
|
||||
run: railway redeploy --service pac-man -y
|
||||
|
||||
Reference in New Issue
Block a user