Skip to content

Commit c628262

Browse files
committed
update azure pipelines to pull all files
1 parent 11d2d3f commit c628262

File tree

1 file changed

+18
-7
lines changed

1 file changed

+18
-7
lines changed

azure-pipelines.yml

+18-7
Original file line numberDiff line numberDiff line change
@@ -4,16 +4,27 @@
44
# https://aka.ms/yaml
55

66
trigger:
7-
- develop
7+
branches:
8+
include:
9+
- develop
10+
paths:
11+
include:
12+
- 'jikkou/*'
13+
- 'kafka-connect/*'
814

915
pool:
1016
vmImage: ubuntu-latest
1117

1218
steps:
13-
- script: echo Hello, world!
14-
displayName: 'Run a one-line script'
19+
- task: CopyFiles@2
20+
inputs:
21+
SourceFolder: '.'
22+
Contents: '**'
23+
TargetFolder: '$(Build.ArtifactStagingDirectory)'
1524

16-
- script: |
17-
echo Add other tasks to build, test, and deploy your project.
18-
echo See https://aka.ms/yaml
19-
displayName: 'Run a multi-line script'
25+
# Publish the artifacts directory for consumption in publish pipeline
26+
- task: PublishBuildArtifacts@1
27+
inputs:
28+
PathtoPublish: '$(Build.ArtifactStagingDirectory)'
29+
ArtifactName: 'jpo-utils-services'
30+
publishLocation: 'Container'

0 commit comments

Comments
 (0)