Skip to content

Commit 33ef3a0

Browse files
committed
add download-artifacts and change name of build-and-coverage
1 parent 783293e commit 33ef3a0

File tree

3 files changed

+13
-2
lines changed

3 files changed

+13
-2
lines changed

.azure-pipelines/buildAndPackage.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ stages:
3939
- template: templates/secure-files.yml
4040
parameters:
4141
stageID: 'build'
42-
- template: templates/build/build-and-coverage.yml
42+
- template: templates/build/pipeline-build.yml
4343
- template: templates/build/publish-artifacts.yml
4444

4545
- stage: Maven_Preview_And_Github_Release
@@ -53,6 +53,7 @@ stages:
5353
runOnce:
5454
deploy:
5555
steps:
56+
- template: templates/download-artifacts.yml
5657
- template: templates/install-java.yml
5758
- template: templates/secure-files.yml
5859
- template: templates/copy-and-build.yml
@@ -66,7 +67,7 @@ stages:
6667
runOnce:
6768
deploy:
6869
steps:
69-
- template: templates/install-java.yml
70+
- template: templates/download-artifacts.yml
7071
- template: templates/version-and-release.yml
7172
parameters:
7273
gitConnection: 'microsoftgraphrelease'
File renamed without changes.
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
steps:
2+
- download: none
3+
- task: DownloadPipelineArtifact@2
4+
inputs:
5+
buildType: 'current'
6+
artifactName: 'Drop'
7+
itemPattern: |
8+
**
9+
*
10+
targetPath: '$(Agent.BuildDirectory)/Drop/'

0 commit comments

Comments
 (0)