pipeline-app/deploy/migrations/m0005_workspace_base_prod.json
yumoqing fc51fba1ea feat(deploy): dmig 环境感知迁移——env字段限定prod/test执行范围
- m0005 生产专用 workspace_base=/d/doit/workspaces(env=prod)
- detect_env: DEPLOY_ENV优先,/doit/路径推断
- 防止生产专用参数在测试环境误执行
2026-09-01 16:22:14 +08:00

13 lines
356 B
JSON
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{
"id": "m0005",
"env": "prod",
"title": "生产设 workspace_base=/d/doit/workspaces代码兜底是测试路径不设会导致工作空间写错位置",
"backup_tables": [],
"up": [
{"op": "params_set", "key": "workspace_base", "value": "/d/doit/workspaces"}
],
"down": [
{"op": "params_del", "key": "workspace_base"}
]
}