Skip to content

Commit

Permalink
Fix parent directory (#4937)
Browse files Browse the repository at this point in the history
Set parent directory closer to nugets, to avoid sdl checks on files we don't publish
  • Loading branch information
nohwnd authored Mar 19, 2024
1 parent 724f79b commit fb859a7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions azure-pipelines-official.yml
Original file line number Diff line number Diff line change
Expand Up @@ -271,14 +271,14 @@ extends:
- task: 1ES.PublishNuget@1
displayName: 'Publish NuGet packages to dotnet-tools feed'
inputs:
packageParentPath: '$(Build.SourcesDirectory)'
packageParentPath: '$(Build.SourcesDirectory)/artifacts/packages/Release'
packagesToPush: '$(Build.SourcesDirectory)/artifacts/packages/Release/**/*.nupkg;!$(Build.SourcesDirectory)/artifacts/packages/Release/**/*.symbols.nupkg'
publishVstsFeed: 'public/dotnet-tools'

- task: 1ES.PublishNuget@1
displayName: 'Publish NuGet packages to test-tools feed'
inputs:
packageParentPath: '$(Build.SourcesDirectory)'
packageParentPath: '$(Build.SourcesDirectory)/artifacts/packages/Release'
packagesToPush: '$(Build.SourcesDirectory)/artifacts/packages/Release/**/*.nupkg;!$(Build.SourcesDirectory)/artifacts/packages/Release/**/*.symbols.nupkg'
publishVstsFeed: 'public/test-tools'

Expand Down

0 comments on commit fb859a7

Please sign in to comment.