Skip to content

Commit

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

Please sign in to comment.