瀏覽代碼

更新Gitee workflow文件

陈精华 2 年之前
父節點
當前提交
f1b949865f
共有 4 個文件被更改,包括 9 次插入9 次删除
  1. 3 3
      .workflow/BranchPipeline.yml
  2. 3 3
      .workflow/MasterPipeline.yml
  3. 2 2
      .workflow/PRPipeline.yml
  4. 1 1
      .workflow/pipeline-20220716.yml

+ 3 - 3
.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:

+ 3 - 3
.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:

+ 2 - 2
.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: 上传制品

+ 1 - 1
.workflow/pipeline-20220716.yml

@@ -24,7 +24,7 @@ stages:
         artifacts:
           - name: BUILD_ARTIFACT
             path:
-              - ./target
+              - ./server/target
         settings: []
         caches:
           - ~/.m2