From ae8ef7f4f22180ff188ce11f73289fb5d88e8060 Mon Sep 17 00:00:00 2001 From: Nelson Chen Date: Sun, 26 May 2019 10:18:55 -0700 Subject: [PATCH] Prefix Windows artifact names with 'Windows' on Azure Pipelines (#319) --- azure-pipelines.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 74657c85..6a111c14 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -48,7 +48,7 @@ jobs: displayName: Publish Completed Build Directory Archive Build Artifact inputs: pathtoPublish: $(Build.ArtifactStagingDirectory)\$(CI_ENV_BUILD_TYPE).zip - artifactName: $(CI_ENV_BUILD_TYPE) + artifactName: Windows $(CI_ENV_BUILD_TYPE) - script: build_installer.bat displayName: Build Installer condition: eq(variables['CI_ENV_BUILD_TYPE'], 'Release') @@ -57,7 +57,7 @@ jobs: condition: eq(variables['CI_ENV_BUILD_TYPE'], 'Release') inputs: pathtoPublish: build\installer-inno\bin - artifactName: Release Installer + artifactName: Windows Release Installer - job: LinuxBuild displayName: Linux Build