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

Commit 1db9ddf

Browse files
authored
Fix artifact path (#79)
* Add CI release/publish to RemotingTools, SecretManagement, ThreadJob modules * Fix artifact path
1 parent 3c82876 commit 1db9ddf

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

Modules/Microsoft.PowerShell.RemotingTools/.ci/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,13 +22,13 @@ jobs:
2222
displayName: 'Install NuGet'
2323

2424
- powershell: |
25-
Get-ChildItem '$(Build.ArtifactStagingDirectory)/Microsoft.PowerShell.RemotingTools.*.nupkg'
25+
Get-ChildItem '$(Build.ArtifactStagingDirectory)/nupkg/Microsoft.PowerShell.RemotingTools.*.nupkg'
2626
displayName: 'Capture NuGet package'
2727
2828
- task: NuGetCommand@2
2929
displayName: 'Push PSThreadJob artifacts to AzArtifactsFeed'
3030
inputs:
3131
command: push
32-
packagesToPush: '$(System.ArtifactsDirectory)/Microsoft.PowerShell.RemotingTools.*.nupkg'
32+
packagesToPush: '$(System.ArtifactsDirectory)/nupkg/Microsoft.PowerShell.RemotingTools.*.nupkg'
3333
nuGetFeedType: external
3434
publishFeedCredentials: AzArtifactFeed

Modules/Microsoft.PowerShell.SecretManagement/.ci/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,13 +22,13 @@ jobs:
2222
displayName: 'Install NuGet'
2323

2424
- powershell: |
25-
Get-ChildItem '$(System.ArtifactsDirectory)/Microsoft.PowerShell.SecretManagement.*.nupkg'
25+
Get-ChildItem '$(System.ArtifactsDirectory)/nupkg/Microsoft.PowerShell.SecretManagement.*.nupkg'
2626
displayName: 'Capture NuGet package'
2727
2828
- task: NuGetCommand@2
2929
displayName: 'Push Microsoft.PowerShell.SecretManagement artifacts to AzArtifactsFeed'
3030
inputs:
3131
command: push
32-
packagesToPush: '$(System.ArtifactsDirectory)/Microsoft.PowerShell.SecretManagement.*.nupkg'
32+
packagesToPush: '$(System.ArtifactsDirectory)/nupkg/Microsoft.PowerShell.SecretManagement.*.nupkg'
3333
nuGetFeedType: external
3434
publishFeedCredentials: AzArtifactFeed

Modules/Microsoft.PowerShell.ThreadJob/.ci/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,13 +22,13 @@ jobs:
2222
displayName: 'Install NuGet'
2323

2424
- powershell: |
25-
Get-ChildItem '$(System.ArtifactsDirectory)/Microsoft.PowerShell.ThreadJob.*.nupkg'
25+
Get-ChildItem '$(System.ArtifactsDirectory)/nupkg/Microsoft.PowerShell.ThreadJob.*.nupkg'
2626
displayName: 'Capture NuGet package'
2727
2828
- task: NuGetCommand@2
2929
displayName: 'Push PSThreadJob artifacts to AzArtifactsFeed'
3030
inputs:
3131
command: push
32-
packagesToPush: '$(System.ArtifactsDirectory)/Microsoft.PowerShell.ThreadJob.*.nupkg'
32+
packagesToPush: '$(System.ArtifactsDirectory)/nupkg/Microsoft.PowerShell.ThreadJob.*.nupkg'
3333
nuGetFeedType: external
3434
publishFeedCredentials: AzArtifactFeed

0 commit comments

Comments
 (0)