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:
Ryan Walters
2025-11-22 22:15:50 -06:00
parent a98ad23348
commit 7eb4705b7c

View File

@@ -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