diff --git a/.azuredevops/pipelines/publish-job.yml b/.azuredevops/pipelines/publish-job.yml index aca8a75b2..12b7c4dac 100644 --- a/.azuredevops/pipelines/publish-job.yml +++ b/.azuredevops/pipelines/publish-job.yml @@ -48,8 +48,8 @@ stages: releaseNotesSource: 'inline' releaseNotesInline: '$(ReleaseNotes)' assets: | - $(Build.ArtifactStagingDirectory)/*.zip - $(Build.ArtifactStagingDirectory)/*.gz + $(System.ArtifactsDirectory)/*.zip + $(System.ArtifactsDirectory)/*.gz isPreRelease: true changeLogCompareToRelease: 'lastNonDraftRelease' changeLogType: 'commitBased' diff --git a/.azuredevops/pipelines/templates/build-steps.yml b/.azuredevops/pipelines/templates/build-steps.yml index 1facc84e6..92eee9c88 100644 --- a/.azuredevops/pipelines/templates/build-steps.yml +++ b/.azuredevops/pipelines/templates/build-steps.yml @@ -50,6 +50,7 @@ steps: - task: DotNetCoreCLI@2 displayName: Run Unit Tests inputs: - comand: 'test' + command: 'custom' projects: '$(TestProject)' - continueOnError: true + custom: 'test' + continueOnError: true diff --git a/.azuredevops/pipelines/templates/variables.yml b/.azuredevops/pipelines/templates/variables.yml index 3d1d83c3e..88abe6812 100644 --- a/.azuredevops/pipelines/templates/variables.yml +++ b/.azuredevops/pipelines/templates/variables.yml @@ -25,3 +25,6 @@ variables: - name: "BuildVersion" value: "4.0.$(Build.BuildId)" + + - name: "ReleaseNotes" + value: ""S \ No newline at end of file