From 0bce3d4b0bc576bef704597857a58156563fa6b6 Mon Sep 17 00:00:00 2001 From: XuqmGroup Date: Sat, 23 May 2026 01:25:10 +0800 Subject: [PATCH] =?UTF-8?q?fix(ci):=20=E4=BF=AE=E5=A4=8D=20choice=20?= =?UTF-8?q?=E5=8F=82=E6=95=B0=E8=AF=AD=E6=B3=95=EF=BC=8C=E4=BD=BF=E7=94=A8?= =?UTF-8?q?=20choices=20=E6=95=B0=E7=BB=84?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index 5f0a311..318fa12 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -3,7 +3,7 @@ pipeline { parameters { // ── 版本升级策略 ───────────────────────────────────────────────────── - choice(name: 'VERSION_BUMP', defaultValue: 'patch', + choice(name: 'VERSION_BUMP', choices: ['patch', 'minor', 'major'], description: '版本升级策略: major(1.0.0→2.0.0), minor(1.0.0→1.1.0), patch(1.0.0→1.0.1)') booleanParam(name: 'CUSTOM_VERSION', defaultValue: false, description: '勾选后使用下方自定义版本号(忽略VERSION_BUMP)')