Fixed up railpack.json

This commit is contained in:
FifthWit 2025-10-06 11:53:18 -05:00
parent b80e2deedd
commit e69c70c725

View file

@ -43,6 +43,7 @@
"step": "build" "step": "build"
} }
], ],
"startCommand": "node .output/server/index.mjs",
"variables": { "variables": {
"CI": "true", "CI": "true",
"NODE_ENV": "production", "NODE_ENV": "production",
@ -51,8 +52,8 @@
"NPM_CONFIG_UPDATE_NOTIFIER": "false" "NPM_CONFIG_UPDATE_NOTIFIER": "false"
} }
}, },
"steps": [ "steps": {
{ "packages:mise": {
"assets": { "assets": {
"mise.toml": "[tools]\n [tools.node]\n version = \"22.20.0\"\n" "mise.toml": "[tools]\n [tools.node]\n version = \"22.20.0\"\n"
}, },
@ -75,7 +76,6 @@
"image": "ghcr.io/railwayapp/railpack-builder:latest" "image": "ghcr.io/railwayapp/railpack-builder:latest"
} }
], ],
"name": "packages:mise",
"variables": { "variables": {
"MISE_CACHE_DIR": "/mise/cache", "MISE_CACHE_DIR": "/mise/cache",
"MISE_CONFIG_DIR": "/mise", "MISE_CONFIG_DIR": "/mise",
@ -85,7 +85,7 @@
"MISE_SHIMS_DIR": "/mise/shims" "MISE_SHIMS_DIR": "/mise/shims"
} }
}, },
{ "install": {
"caches": [ "caches": [
"npm-install" "npm-install"
], ],
@ -111,7 +111,6 @@
"local": true "local": true
} }
], ],
"name": "install",
"variables": { "variables": {
"CI": "true", "CI": "true",
"NODE_ENV": "production", "NODE_ENV": "production",
@ -120,7 +119,7 @@
"NPM_CONFIG_UPDATE_NOTIFIER": "false" "NPM_CONFIG_UPDATE_NOTIFIER": "false"
} }
}, },
{ "build": {
"caches": [ "caches": [
"node-modules" "node-modules"
], ],
@ -140,10 +139,9 @@
"local": true "local": true
} }
], ],
"name": "build",
"secrets": [ "secrets": [
"*" "*"
] ]
} }
] }
} }