Skip to content

Commit

Permalink
Fix package deployment
Browse files Browse the repository at this point in the history
  • Loading branch information
AArnott committed Oct 1, 2021
1 parent f2eefea commit a0bff9b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion azure-pipelines/publish-deployables.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ steps:
displayName: Push packages to CI feed
inputs:
command: push
packagesToPush: $(Build.ArtifactStagingDirectory)/deployables-Linux/NuGet/*.nupkg
packagesToPush: $(Build.ArtifactStagingDirectory)/deployables-Windows/NuGet/*.nupkg
nuGetFeedType: internal
publishVstsFeed: $(ci_feed)
allowPackageConflicts: true
Expand Down
6 changes: 3 additions & 3 deletions azure-pipelines/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,8 +56,8 @@ stages:
deploy:
steps:
- download: CI
artifact: deployables-Linux
displayName: Download deployables-Linux artifact
artifact: deployables-Windows
displayName: Download deployables-Windows artifact
- task: NuGetToolInstaller@1
displayName: Use NuGet 5.x
inputs:
Expand All @@ -66,6 +66,6 @@ stages:
displayName: NuGet push
inputs:
command: push
packagesToPush: $(Pipeline.Workspace)/CI/deployables-Linux/NuGet/*.nupkg
packagesToPush: $(Pipeline.Workspace)/CI/deployables-Windows/NuGet/*.nupkg
nuGetFeedType: external
publishFeedCredentials: nuget.org

0 comments on commit a0bff9b

Please sign in to comment.