From 3117dfbb304ec5cc349b0d1a6fb0c0a6daf5a04c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=B0=8F=E9=B1=BC=E5=BC=80=E5=8F=91?= Date: Wed, 10 Jun 2026 18:37:42 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20publish=5Frelease.py=20=E9=BB=98?= =?UTF-8?q?=E8=AE=A4=20base-url=20=E6=94=B9=E4=B8=BA=20media.liche.cn?= =?UTF-8?q?=EF=BC=8C=E9=81=BF=E5=85=8D=E6=89=8B=E5=8A=A8=E4=BC=A0=E9=94=99?= =?UTF-8?q?=E5=9F=9F=E5=90=8D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- python-api/scripts/publish_release.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/python-api/scripts/publish_release.py b/python-api/scripts/publish_release.py index 5c80778..62796e1 100644 --- a/python-api/scripts/publish_release.py +++ b/python-api/scripts/publish_release.py @@ -173,12 +173,12 @@ def create_release(api_base_url: str, version: str, notes: str, mandatory: bool, def main(): parser = argparse.ArgumentParser(description="手动发布应用版本") parser.add_argument("--version", required=True, help="版本号,如 1.6.0") - parser.add_argument("--notes", default="", help="更新说明(支持 \\n 换行)") + parser.add_argument("--notes", default="https://media.liche.cn/meijiaka-zy/releases", help="更新说明(支持 \\n 换行)") parser.add_argument("--mandatory", action="store_true", help="强制更新") parser.add_argument("--bundle-dir", required=True, help="Tauri 构建产物目录") parser.add_argument("--api-url", default="https://dev.tapi.meijiaka.cn", help="后端 API 地址") parser.add_argument("--skip-upload", action="store_true", help="跳过七牛云上传(包已上传)") - parser.add_argument("--base-url", default="", help="安装包基础 URL(跳过上传时使用)") + parser.add_argument("--base-url", default="https://media.liche.cn/meijiaka-zy/releases", help="安装包基础 URL(跳过上传时使用)") args = parser.parse_args()