From 8151f306eca922401c1e6c22b74f5bca3d08361d Mon Sep 17 00:00:00 2001 From: Matt Nadareski Date: Fri, 6 Jan 2023 09:46:37 -0800 Subject: [PATCH] Experiment adding version numbers --- appveyor.yml | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/appveyor.yml b/appveyor.yml index c2035b2..acde14b 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -29,15 +29,15 @@ build_script: # post-build script after_build: - cmd: cd %APPVEYOR_BUILD_FOLDER%\NDecrypt\bin\Debug\net48 - - cmd: 7z a -tzip %APPVEYOR_BUILD_FOLDER%\NDecrypt_net48.zip * + - cmd: 7z a -tzip %APPVEYOR_BUILD_FOLDER%\NDecrypt.%APPVEYOR_BUILD_VERSION%_net48.zip * - cmd: cd %APPVEYOR_BUILD_FOLDER%\NDecrypt\bin\Debug\net6.0\win-x86\publish\ - - cmd: 7z a -tzip %APPVEYOR_BUILD_FOLDER%\NDecrypt_net6.0_win-x86.zip * + - cmd: 7z a -tzip %APPVEYOR_BUILD_FOLDER%\NDecrypt.%APPVEYOR_BUILD_VERSION%_net6.0_win-x86.zip * - cmd: cd %APPVEYOR_BUILD_FOLDER%\NDecrypt\bin\Debug\net6.0\win-x64\publish\ - - cmd: 7z a -tzip %APPVEYOR_BUILD_FOLDER%\NDecrypt_net6.0_win-x64.zip * + - cmd: 7z a -tzip %APPVEYOR_BUILD_FOLDER%\NDecrypt.%APPVEYOR_BUILD_VERSION%_net6.0_win-x64.zip * - cmd: cd %APPVEYOR_BUILD_FOLDER%\NDecrypt\bin\Debug\net6.0\linux-x64\publish\ - - cmd: 7z a -tzip %APPVEYOR_BUILD_FOLDER%\NDecrypt_net6.0_linux-x64.zip * + - cmd: 7z a -tzip %APPVEYOR_BUILD_FOLDER%\NDecrypt.%APPVEYOR_BUILD_VERSION%_net6.0_linux-x64.zip * - cmd: cd %APPVEYOR_BUILD_FOLDER%\NDecrypt\bin\Debug\net6.0\osx-x64\publish\ - - cmd: 7z a -tzip %APPVEYOR_BUILD_FOLDER%\NDecrypt_net6.0_osx-x64.zip * + - cmd: 7z a -tzip %APPVEYOR_BUILD_FOLDER%\NDecrypt.%APPVEYOR_BUILD_VERSION%_net6.0_osx-x64.zip * # success/failure tracking on_success: @@ -49,13 +49,13 @@ on_failure: # artifact linking artifacts: -- path: NDecrypt_net48.zip +- path: NDecrypt.%APPVEYOR_BUILD_VERSION%_net48.zip name: NDecrypt (.NET Framework 4.8) -- path: NDecrypt_net6.0_win-x86.zip +- path: NDecrypt.%APPVEYOR_BUILD_VERSION%_net6.0_win-x86.zip name: NDecrypt (.NET 6.0, Windows x86) -- path: NDecrypt_net6.0_win-x64.zip +- path: NDecrypt.%APPVEYOR_BUILD_VERSION%_net6.0_win-x64.zip name: NDecrypt (.NET 6.0, Windows x64) -- path: NDecrypt_net6.0_linux-x64.zip +- path: NDecrypt.%APPVEYOR_BUILD_VERSION%_net6.0_linux-x64.zip name: NDecrypt (.NET 6.0, Linux x64) -- path: NDecrypt_net6.0_osx-x64.zip +- path: NDecrypt.%APPVEYOR_BUILD_VERSION%_net6.0_osx-x64.zip name: NDecrypt (.NET 6.0, OSX x64) \ No newline at end of file