From ef6228922ec1e471740957b5e1d167ca414084a7 Mon Sep 17 00:00:00 2001 From: ArvinLovegood Date: Fri, 25 Apr 2025 17:55:24 +0800 Subject: [PATCH] =?UTF-8?q?ci:=E6=9B=B4=E6=96=B0Go=E7=89=88=E6=9C=AC?= =?UTF-8?q?=E5=B9=B6=E4=BF=AE=E5=A4=8D=E5=B8=82=E5=9C=BA=E8=B5=84=E8=AE=AF?= =?UTF-8?q?=E4=BF=9D=E5=AD=98=E5=8A=9F=E8=83=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit -将 Go 版本从 1.23 升级到1.24 - 修复市场资讯保存功能,更新 SaveAsMarkdown 调用参数 --- .github/workflows/main.yml | 2 +- frontend/src/components/market.vue | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index a319d28..0a11cec 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -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' diff --git a/frontend/src/components/market.vue b/frontend/src/components/market.vue index 58b9338..5b9e27a 100644 --- a/frontend/src/components/market.vue +++ b/frontend/src/components/market.vue @@ -192,7 +192,7 @@ async function copyToClipboard() { } } function saveAsMarkdown(){ - SaveAsMarkdown('','市场资讯').then(result => { + SaveAsMarkdown('市场资讯','市场资讯').then(result => { message.success(result) }) }