From f1b949865ff34060684d196f43c10c7d9c8659d5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=99=88=E7=B2=BE=E5=8D=8E?= <842761733@qq.com> Date: Thu, 21 Jul 2022 11:38:48 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=96=B0Gitee=20workflow=E6=96=87?= =?UTF-8?q?=E4=BB=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .workflow/BranchPipeline.yml | 6 +++--- .workflow/MasterPipeline.yml | 6 +++--- .workflow/PRPipeline.yml | 4 ++-- .workflow/pipeline-20220716.yml | 2 +- 4 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.workflow/BranchPipeline.yml b/.workflow/BranchPipeline.yml index 9d2a2926..974c8f10 100644 --- a/.workflow/BranchPipeline.yml +++ b/.workflow/BranchPipeline.yml @@ -2,7 +2,7 @@ version: '1.0' name: branch-pipeline displayName: BranchPipeline stages: - - stage: + - stage: name: compile displayName: 编译 steps: @@ -22,7 +22,7 @@ stages: - name: BUILD_ARTIFACT # 构建产物获取路径,是指代码编译完毕之后构建物的所在路径,如通常jar包在target目录下。当前目录为代码库根目录 path: - - ./target + - ./server/target - step: publish@general_artifacts name: publish_general_artifacts displayName: 上传制品 @@ -31,7 +31,7 @@ stages: # 上传到制品库时的制品命名,默认output artifactName: output dependsOn: build_maven - - stage: + - stage: name: release displayName: 发布 steps: diff --git a/.workflow/MasterPipeline.yml b/.workflow/MasterPipeline.yml index 5d926c26..03e027de 100644 --- a/.workflow/MasterPipeline.yml +++ b/.workflow/MasterPipeline.yml @@ -2,7 +2,7 @@ version: '1.0' name: master-pipeline displayName: MasterPipeline stages: - - stage: + - stage: name: compile displayName: 编译 steps: @@ -22,7 +22,7 @@ stages: - name: BUILD_ARTIFACT # 构建产物获取路径,是指代码编译完毕之后构建物的所在路径,如通常jar包在target目录下。当前目录为代码库根目录 path: - - ./target + - ./server/target - step: publish@general_artifacts name: publish_general_artifacts displayName: 上传制品 @@ -31,7 +31,7 @@ stages: # 上传到制品库时的制品命名,默认output artifactName: output dependsOn: build_maven - - stage: + - stage: name: release displayName: 发布 steps: diff --git a/.workflow/PRPipeline.yml b/.workflow/PRPipeline.yml index 3f7579dd..f518e081 100644 --- a/.workflow/PRPipeline.yml +++ b/.workflow/PRPipeline.yml @@ -2,7 +2,7 @@ version: '1.0' name: pr-pipeline displayName: PRPipeline stages: - - stage: + - stage: name: compile displayName: 编译 steps: @@ -22,7 +22,7 @@ stages: - name: BUILD_ARTIFACT # 构建产物获取路径,是指代码编译完毕之后构建物的所在路径,如通常jar包在target目录下。当前目录为代码库根目录 path: - - ./target + - ./server/target - step: publish@general_artifacts name: publish_general_artifacts displayName: 上传制品 diff --git a/.workflow/pipeline-20220716.yml b/.workflow/pipeline-20220716.yml index 8065b2b2..e4e14d55 100644 --- a/.workflow/pipeline-20220716.yml +++ b/.workflow/pipeline-20220716.yml @@ -24,7 +24,7 @@ stages: artifacts: - name: BUILD_ARTIFACT path: - - ./target + - ./server/target settings: [] caches: - ~/.m2