This is an automated email from the ASF dual-hosted git repository. nightowl888 pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/lucenenet.git
commit e55fe8de6740c6623618833dbcffc1f9b5c572cd Author: Michael <[email protected]> AuthorDate: Wed Jul 1 11:49:59 2020 +0700 added missing publish --- azure-pipelines.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 4fd83bb..b89b60f 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -170,8 +170,23 @@ stages: publishLocation: 'pipeline' condition: and(succeeded(), ne(variables['RunTests'], 'false')) + - task: PublishPipelineArtifact@1 + displayName: 'Publish Artifact: $(BinaryArtifactName)_netcoreapp2.1' + inputs: + targetPath: '$(PublishTempDirectory)\netcoreapp2.1' + artifact: '$(BinaryArtifactName)_netcoreapp2.1' + publishLocation: 'pipeline' + condition: and(succeeded(), ne(variables['RunTests'], 'false')) - task: PublishPipelineArtifact@1 + displayName: 'Publish Artifact: $(BinaryArtifactName)_net48' + inputs: + targetPath: '$(PublishTempDirectory)\net48' + artifact: '$(BinaryArtifactName)_net48' + publishLocation: 'pipeline' + condition: and(succeeded(), ne(variables['RunTests'], 'false')) + + - task: PublishPipelineArtifact@1 displayName: 'Publish Artifact: $(NuGetArtifactName)' inputs: targetPath: '$(Build.ArtifactStagingDirectory)/$(NuGetArtifactName)'
