Skip to content

Commit

Permalink
build: Fix artifact locations
Browse files Browse the repository at this point in the history
  • Loading branch information
qdot committed Mar 30, 2019
1 parent 7a3625b commit 3ded5ff
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions azure-pipelines.yml
Expand Up @@ -72,7 +72,7 @@ jobs:
- task: PublishPipelineArtifact@0
inputs:
targetPath: '$(Build.ArtifactStagingDirectory)'
artifactName: 'nuget-packages'
artifactName: 'artifacts-$(buildConfiguration)'
- job: "Linux"
pool:
vmImage: 'ubuntu-16.04'
Expand Down Expand Up @@ -167,7 +167,7 @@ jobs:
targetType: inline
script: |
cinst -y --no-progress codecov
codecov.exe -f "$(System.ArtifactsDirectory)/win-x64-Debug/coverage.xml" -t $(CODECOV_TOKEN)
codecov.exe -f "$(System.ArtifactsDirectory)/artifacts-Debug/coverage.xml" -t $(CODECOV_TOKEN)
displayName: Upload coverage to codecov.
continueOnError: true
- task: NuGetCommand@2
Expand All @@ -176,6 +176,6 @@ jobs:
inputs:
command: "push"
nuGetFeedType: "external"
packagesToPush: "$(System.ArtifactsDirectory)/**/Release/**/!(*.symbols).nupkg"
packagesToPush: "$(System.ArtifactsDirectory)/artifacts-Release/**/!(*.symbols).nupkg"
allowPackageConflicts: false
publishFeedCredentials: "NuGet.org"

0 comments on commit 3ded5ff

Please sign in to comment.