Skip to content

Commit 7aa60a1

Browse files
committed
ci(deploy): fix error caused by backticks during deployment
Deepseek included backticks (`) in the changelog summary, causing deployment failures. This issue has now been resolved. --- 集成(deploy):修复部署过程中因反引号导致的错误 Deepseek 在总结更新内容时包含了反引号“`”,导致部署失败,现已修复该问题。
1 parent f7537c1 commit 7aa60a1

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/workflows/website_deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ jobs:
5656
"model": "deepseek-chat",
5757
"messages": [
5858
{"role": "system", "content": "You are a helpful assistant"},
59-
{"role": "user", "content": "用中文回答,一句话总结以下更新内容,适合放在公告栏:${{ steps.changelog.outputs.added }}"}
59+
{"role": "user", "content": "一句中文总结以下更新内容,适合放在公告栏(不允许出现“`”等特殊符号):${{ steps.changelog.outputs.added }}"}
6060
]
6161
}' | jq -r '.choices[0].message.content')
6262
echo "response<<EOF" >> $GITHUB_OUTPUT

0 commit comments

Comments
 (0)