From 616079b16b9f11056677717ad28d5f9ef19ca501 Mon Sep 17 00:00:00 2001 From: shaw Date: Wed, 6 Aug 2025 10:26:31 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E4=BF=AE=E5=A4=8D=20web-dist=20?= =?UTF-8?q?=E5=88=86=E6=94=AF=20README=20=E6=96=87=E4=BB=B6=E6=97=A5?= =?UTF-8?q?=E6=9C=9F=E5=8F=98=E9=87=8F=E6=9B=BF=E6=8D=A2=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 移除 heredoc 的单引号,允许变量和命令替换 - 确保 Build Date 能正确显示实际构建时间 - 同时修复了 workflow 和测试脚本中的相同问题 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude --- .github/workflows/auto-release-pipeline.yml | 2 +- scripts/test-web-dist.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/auto-release-pipeline.yml b/.github/workflows/auto-release-pipeline.yml index 7fe6eb37..1ce2e48f 100644 --- a/.github/workflows/auto-release-pipeline.yml +++ b/.github/workflows/auto-release-pipeline.yml @@ -181,7 +181,7 @@ jobs: cp -r "$TEMP_DIR"/* . # 添加 README - cat > README.md << 'EOF' + cat > README.md << EOF # Claude Relay Service - Web Frontend Build This branch contains the pre-built frontend assets for Claude Relay Service. diff --git a/scripts/test-web-dist.sh b/scripts/test-web-dist.sh index a2b53364..48964fcf 100644 --- a/scripts/test-web-dist.sh +++ b/scripts/test-web-dist.sh @@ -85,7 +85,7 @@ test_build_and_push() { cp -r "$TEMP_DIR"/* . # 添加 README - cat > README.md << 'EOF' + cat > README.md << EOF # Claude Relay Service - Web Frontend Build This branch contains the pre-built frontend assets for Claude Relay Service.