From 77832557d6a9a60ab61aebdd86384fd0b40cf5c3 Mon Sep 17 00:00:00 2001 From: Robin Krom Date: Mon, 29 Apr 2019 23:32:15 +0200 Subject: [PATCH] Renaming is hard... --- azure-pipelines.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 9ccf880d9..1f2d0f738 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -41,7 +41,7 @@ steps: - task: CmdLine@2 displayName: Rename single-exe x64 inputs: - script: 'rename $(Build.SourcesDirectory)\src\Greenshot\bin\Release\netcoreapp3.0\win-x64\publish\Greenshot.exe $(Build.SourcesDirectory)\src\Greenshot\bin\Release\netcoreapp3.0\win-x64\publish\Greenshot-x64.exe' + script: 'rename $(Build.SourcesDirectory)\src\Greenshot\bin\Release\netcoreapp3.0\win-x64\publish\Greenshot.exe Greenshot-x64.exe' - task: DotNetCoreCLI@2 displayName: Publish single-exe x86 @@ -55,7 +55,7 @@ steps: - task: CmdLine@2 displayName: Rename single-exe x86 inputs: - script: 'rename $(Build.SourcesDirectory)\src\Greenshot\bin\Release\netcoreapp3.0\win-x86\publish\Greenshot.exe $(Build.SourcesDirectory)\src\Greenshot\bin\Release\netcoreapp3.0\win-x86\publish\Greenshot-x86.exe' + script: 'rename $(Build.SourcesDirectory)\src\Greenshot\bin\Release\netcoreapp3.0\win-x86\publish\Greenshot.exe Greenshot-x86.exe' - task: CopyFiles@2 displayName: 'Copy Files to: $(build.artifactstagingdirectory)'