ci:更新Go版本并修复市场资讯保存功能

-将 Go 版本从 1.23 升级到1.24
- 修复市场资讯保存功能,更新 SaveAsMarkdown 调用参数
This commit is contained in:
ArvinLovegood 2025-04-25 17:55:24 +08:00
parent c4caea5be8
commit ef6228922e
2 changed files with 2 additions and 2 deletions

View File

@ -44,7 +44,7 @@ jobs:
build-name: ${{ matrix.build.name }}
build-platform: ${{ matrix.build.platform }}
package: true
go-version: '1.23'
go-version: '1.24'
build-tags: ${{ github.ref_name }}
build-commit-message: ${{ steps.get_commit_message.outputs.commit_message }}
node-version: '18.x'

View File

@ -192,7 +192,7 @@ async function copyToClipboard() {
}
}
function saveAsMarkdown(){
SaveAsMarkdown('','市场资讯').then(result => {
SaveAsMarkdown('市场资讯','市场资讯').then(result => {
message.success(result)
})
}