Skip to content

Commit f6d86ba

Browse files
authoredOct 29, 2024
Extract artifact from upstream pipeline (#5072)
Since drop_build_main now includes the zip archive among other things.
1 parent 64f32d3 commit f6d86ba

File tree

1 file changed

+10
-2
lines changed

1 file changed

+10
-2
lines changed
 

Diff for: ‎.pipelines/vscode-powershell-Official.yml

+10-2
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,11 @@ extends:
9696
specificBuildWithTriggering: true
9797
branchName: refs/heads/main
9898
artifact: drop_build_main
99-
targetPath: $(Build.SourcesDirectory)/modules
99+
- task: ExtractFiles@1
100+
displayName: Extract PowerShellEditorServices
101+
inputs:
102+
archiveFilePatterns: $(Pipeline.Workspace)/PowerShellEditorServices.zip
103+
destinationFolder: $(Build.SourcesDirectory)/modules
100104
- pwsh: |
101105
Register-PSRepository -Name CFS -SourceLocation "https://pkgs.dev.azure.com/powershell/PowerShell/_packaging/powershell/nuget/v2" -InstallationPolicy Trusted
102106
Install-Module -Repository CFS -Name Microsoft.PowerShell.PSResourceGet
@@ -154,7 +158,11 @@ extends:
154158
specificBuildWithTriggering: true
155159
branchName: refs/heads/main
156160
artifact: drop_build_main
157-
targetPath: $(Build.SourcesDirectory)/modules
161+
- task: ExtractFiles@1
162+
displayName: Extract PowerShellEditorServices
163+
inputs:
164+
archiveFilePatterns: $(Pipeline.Workspace)/PowerShellEditorServices.zip
165+
destinationFolder: $(Build.SourcesDirectory)/modules
158166
- pwsh: |
159167
Register-PSRepository -Name CFS -SourceLocation "https://pkgs.dev.azure.com/powershell/PowerShell/_packaging/powershell/nuget/v2" -InstallationPolicy Trusted
160168
Install-Module -Repository CFS -Name Microsoft.PowerShell.PSResourceGet

0 commit comments

Comments
 (0)