File tree Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -15,22 +15,25 @@ jobs:
15
15
16
16
- script : npm pack
17
17
displayName : ' npm pack'
18
- condition : and(succeeded(), eq(variables['Build.SourceBranch'], 'refs/heads/master'))
18
+ condition : and(succeeded()
19
+ # condition: and(succeeded(), eq(variables['Build.SourceBranch'], 'refs/heads/master'))
19
20
20
21
- task : CopyFiles@2
21
22
inputs :
22
23
sourceFolder : ' $(Build.SourcesDirectory)'
23
24
contents : ' *.tgz'
24
25
targetFolder : $(Build.ArtifactStagingDirectory)
25
26
displayName : ' Copy npm package to staging'
26
- condition : and(succeeded(), eq(variables['Build.SourceBranch'], 'refs/heads/master'))
27
+ condition : and(succeeded())
28
+ # condition: and(succeeded(), eq(variables['Build.SourceBranch'], 'refs/heads/master'))
27
29
28
30
- task : PublishBuildArtifacts@1
29
31
inputs :
30
32
pathtoPublish : ' $(Build.ArtifactStagingDirectory)'
31
33
artifactName : npm
32
34
displayName : ' Publish npm artifact'
33
- condition : and(succeeded(), eq(variables['Build.SourceBranch'], 'refs/heads/master'))
35
+ condition : and(succeeded())
36
+ # condition: and(succeeded(), eq(variables['Build.SourceBranch'], 'refs/heads/master'))
34
37
35
38
- job : ' MacOS_1013'
36
39
pool :
You can’t perform that action at this time.
0 commit comments