ci/cd调整

This commit is contained in:
2026-06-08 13:39:20 +08:00
parent 34c5eeaf63
commit ab3a2d967e
6 changed files with 16 additions and 12 deletions

View File

@@ -163,7 +163,7 @@ func MergeLambda(ctx context.Context, input any) (any, error) {
// 2. 提取所有文案text_content_0,1,2...
var contents []node.NodeFormField
for i := 0; ; i++ {
key := fmt.Sprintf("text_url_%d", i)
key := fmt.Sprintf("text_url:%d", i)
val, has := dataMap[key]
if !has || val.Value == "" {
break
@@ -174,7 +174,7 @@ func MergeLambda(ctx context.Context, input any) (any, error) {
// 3. 提取所有图片image_0,1,2...
var images []string
for i := 0; ; i++ {
key := fmt.Sprintf("img_url%d", i)
key := fmt.Sprintf("img_url:%d", i)
val, has := dataMap[key]
if !has || val.Value == "" {
break