From 2ff4b0baa7949587dbb0b24ce95be514ecafefa0 Mon Sep 17 00:00:00 2001 From: Michael Ganss Date: Mon, 2 Jul 2018 12:27:10 +0200 Subject: [PATCH] Include version in zip file name --- appveyor.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/appveyor.yml b/appveyor.yml index 169aacd0..59bc338a 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -12,7 +12,7 @@ build_script: - dotnet pack --include-symbols --include-source -c Release XmlSchemaClassGenerator - dotnet pack --include-symbols --include-source -c Release XmlSchemaClassGenerator.Console - dotnet pack --include-symbols --include-source -c Release xscgen - - 7z a -mx=9 Binaries.zip ".\XmlSchemaClassGenerator.Console\bin\Release\net45\publish\*" + - 7z a -mx=9 XmlSchemaClassGenerator.%APPVEYOR_BUILD_VERSION%.zip ".\XmlSchemaClassGenerator.Console\bin\Release\net45\publish\*" test_script: - dotnet test XmlSchemaClassGenerator.Tests\XmlSchemaClassGenerator.Tests.csproj - nuget.exe install OpenCover -ExcludeVersion @@ -24,4 +24,4 @@ artifacts: - path: 'XmlSchemaClassGenerator\**\*.nupkg' - path: 'XmlSchemaClassGenerator.Console\**\*.nupkg' - path: 'xscgen\**\*.nupkg' - - path: 'Binaries.zip' + - path: XmlSchemaClassGenerator.%APPVEYOR_BUILD_VERSION%.zip