From c5a70c156f719d4df2e3cace9afbabce506227f9 Mon Sep 17 00:00:00 2001 From: Jamie Rees Date: Wed, 18 Mar 2020 20:56:29 +0000 Subject: [PATCH] fixed deploy --- .azuredevops/pipelines/publish-job.yml | 4 ++-- .azuredevops/pipelines/templates/build-steps.yml | 5 +++-- .azuredevops/pipelines/templates/variables.yml | 3 +++ 3 files changed, 8 insertions(+), 4 deletions(-) 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