Skip to content

Commit

Permalink
Revert "Remove default params from pipeline"
Browse files Browse the repository at this point in the history
This reverts commit ba36318.
  • Loading branch information
torrentalle committed May 4, 2019
1 parent ba36318 commit d02fdc0
Showing 1 changed file with 14 additions and 1 deletion.
15 changes: 14 additions & 1 deletion azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,12 @@ jobs:
- task: CopyFiles@2
inputs:
Contents: '*.vsix'
TargetFolder: '$(Build.ArtifactStagingDirectory)'
TargetFolder: 'package/'
OverWrite: true
- task: PublishPipelineArtifact@0
inputs:
artifactName: 'extension'
targetPath: 'package'
- job: Install_Windows
dependsOn: Test
condition: |
Expand All @@ -69,6 +73,9 @@ jobs:
inputs:
verbose: false
- task: DownloadPipelineArtifact@0
inputs:
artifactName: 'extension'
targetPath: $(System.DefaultWorkingDirectory)
- task: Npm@1
displayName: 'Compile sources'
inputs:
Expand Down Expand Up @@ -109,6 +116,9 @@ jobs:
inputs:
verbose: false
- task: DownloadPipelineArtifact@0
inputs:
artifactName: 'extension'
targetPath: $(System.DefaultWorkingDirectory)
- task: Npm@1
displayName: 'Compile sources'
inputs:
Expand Down Expand Up @@ -149,6 +159,9 @@ jobs:
inputs:
verbose: false
- task: DownloadPipelineArtifact@0
inputs:
artifactName: 'extension'
targetPath: $(System.DefaultWorkingDirectory)
- task: Npm@1
displayName: 'Compile sources'
inputs:
Expand Down

0 comments on commit d02fdc0

Please sign in to comment.