Skip to content
This repository was archived by the owner on Dec 8, 2021. It is now read-only.

Fix artifact path #79

Merged
merged 3 commits into from
May 4, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Modules/Microsoft.PowerShell.RemotingTools/.ci/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,13 +22,13 @@ jobs:
displayName: 'Install NuGet'

- powershell: |
Get-ChildItem '$(Build.ArtifactStagingDirectory)/Microsoft.PowerShell.RemotingTools.*.nupkg'
Get-ChildItem '$(Build.ArtifactStagingDirectory)/nupkg/Microsoft.PowerShell.RemotingTools.*.nupkg'
displayName: 'Capture NuGet package'

- task: NuGetCommand@2
displayName: 'Push PSThreadJob artifacts to AzArtifactsFeed'
inputs:
command: push
packagesToPush: '$(System.ArtifactsDirectory)/Microsoft.PowerShell.RemotingTools.*.nupkg'
packagesToPush: '$(System.ArtifactsDirectory)/nupkg/Microsoft.PowerShell.RemotingTools.*.nupkg'
nuGetFeedType: external
publishFeedCredentials: AzArtifactFeed
4 changes: 2 additions & 2 deletions Modules/Microsoft.PowerShell.SecretManagement/.ci/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,13 +22,13 @@ jobs:
displayName: 'Install NuGet'

- powershell: |
Get-ChildItem '$(System.ArtifactsDirectory)/Microsoft.PowerShell.SecretManagement.*.nupkg'
Get-ChildItem '$(System.ArtifactsDirectory)/nupkg/Microsoft.PowerShell.SecretManagement.*.nupkg'
displayName: 'Capture NuGet package'

- task: NuGetCommand@2
displayName: 'Push Microsoft.PowerShell.SecretManagement artifacts to AzArtifactsFeed'
inputs:
command: push
packagesToPush: '$(System.ArtifactsDirectory)/Microsoft.PowerShell.SecretManagement.*.nupkg'
packagesToPush: '$(System.ArtifactsDirectory)/nupkg/Microsoft.PowerShell.SecretManagement.*.nupkg'
nuGetFeedType: external
publishFeedCredentials: AzArtifactFeed
4 changes: 2 additions & 2 deletions Modules/Microsoft.PowerShell.ThreadJob/.ci/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,13 +22,13 @@ jobs:
displayName: 'Install NuGet'

- powershell: |
Get-ChildItem '$(System.ArtifactsDirectory)/Microsoft.PowerShell.ThreadJob.*.nupkg'
Get-ChildItem '$(System.ArtifactsDirectory)/nupkg/Microsoft.PowerShell.ThreadJob.*.nupkg'
displayName: 'Capture NuGet package'

- task: NuGetCommand@2
displayName: 'Push PSThreadJob artifacts to AzArtifactsFeed'
inputs:
command: push
packagesToPush: '$(System.ArtifactsDirectory)/Microsoft.PowerShell.ThreadJob.*.nupkg'
packagesToPush: '$(System.ArtifactsDirectory)/nupkg/Microsoft.PowerShell.ThreadJob.*.nupkg'
nuGetFeedType: external
publishFeedCredentials: AzArtifactFeed