From 8d671709e9cbb691e09f1fbcf060a7b9f8d439e6 Mon Sep 17 00:00:00 2001 From: anguohui Date: Thu, 9 Jul 2026 22:36:28 +0800 Subject: [PATCH] fix(apps): use tos_path instead of tosPath in release-create request body --- shortcuts/apps/apps_release_create.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shortcuts/apps/apps_release_create.go b/shortcuts/apps/apps_release_create.go index 4133bedc6..2288dcc7e 100644 --- a/shortcuts/apps/apps_release_create.go +++ b/shortcuts/apps/apps_release_create.go @@ -76,7 +76,7 @@ func buildPublishBody(branch, tosPath string) map[string]interface{} { body["branch"] = branch } if tosPath != "" { - body["tosPath"] = tosPath + body["tos_path"] = tosPath } return body }