fix(apps): use tos_path instead of tosPath in release-create request body

This commit is contained in:
anguohui
2026-07-09 22:36:28 +08:00
parent 3454823536
commit 8d671709e9

View File

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