From 204105f5253cb1c8a4e6914cacc1688030f26138 Mon Sep 17 00:00:00 2001 From: admin Date: Tue, 2 Dec 2025 11:05:35 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=96=B0=20.gitea/workflows/develop?= =?UTF-8?q?=5Fbuild=5Fmanual.yaml?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitea/workflows/develop_build_manual.yaml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.gitea/workflows/develop_build_manual.yaml b/.gitea/workflows/develop_build_manual.yaml index fae1f777..5252f474 100644 --- a/.gitea/workflows/develop_build_manual.yaml +++ b/.gitea/workflows/develop_build_manual.yaml @@ -61,6 +61,11 @@ jobs: - name: 4.构建jar包 run: | echo "===== 开始构建JAR包 =====" + # 新增:打印当前构建分支(两种方式双重确认) + echo "当前工作目录分支:$(git branch --show-current)" + echo "Gitea检出分支:${{ github.ref_name }}" + echo "预期构建分支:dev/3.1_release_merge" + echo "========================" mvn -B clean package -DskipTests --file pom.xml 2>&1 # 检查构建是否成功 if [ $? -ne 0 ]; then