diff --git a/appveyor.yml b/appveyor.yml index 7fd62f0..13345f9 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -1,5 +1,5 @@ # version format -version: 0.2.4-{commit} +version: 0.2.4-{build} # pull request template pull_requests: @@ -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.%APPVEYOR_BUILD_VERSION%_net48.zip * + - cmd: 7z a -tzip %APPVEYOR_BUILD_FOLDER%\NDecrypt-%APPVEYOR_REPO_COMMIT%_net48.zip * - cmd: cd %APPVEYOR_BUILD_FOLDER%\NDecrypt\bin\Debug\net6.0\win-x86\publish\ - - cmd: 7z a -tzip %APPVEYOR_BUILD_FOLDER%\NDecrypt.%APPVEYOR_BUILD_VERSION%_net6.0_win-x86.zip * + - cmd: 7z a -tzip %APPVEYOR_BUILD_FOLDER%\NDecrypt-%APPVEYOR_REPO_COMMIT%_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.%APPVEYOR_BUILD_VERSION%_net6.0_win-x64.zip * + - cmd: 7z a -tzip %APPVEYOR_BUILD_FOLDER%\NDecrypt-%APPVEYOR_REPO_COMMIT%_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.%APPVEYOR_BUILD_VERSION%_net6.0_linux-x64.zip * + - cmd: 7z a -tzip %APPVEYOR_BUILD_FOLDER%\NDecrypt-%APPVEYOR_REPO_COMMIT%_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.%APPVEYOR_BUILD_VERSION%_net6.0_osx-x64.zip * + - cmd: 7z a -tzip %APPVEYOR_BUILD_FOLDER%\NDecrypt-%APPVEYOR_REPO_COMMIT%_net6.0_osx-x64.zip * # success/failure tracking on_success: @@ -49,13 +49,13 @@ on_failure: # artifact linking artifacts: -- path: NDecrypt.%APPVEYOR_BUILD_VERSION%_net48.zip +- path: NDecrypt-%APPVEYOR_REPO_COMMIT%_net48.zip name: NDecrypt (.NET Framework 4.8) -- path: NDecrypt.%APPVEYOR_BUILD_VERSION%_net6.0_win-x86.zip +- path: NDecrypt-%APPVEYOR_REPO_COMMIT%_net6.0_win-x86.zip name: NDecrypt (.NET 6.0, Windows x86) -- path: NDecrypt.%APPVEYOR_BUILD_VERSION%_net6.0_win-x64.zip +- path: NDecrypt-%APPVEYOR_REPO_COMMIT%_net6.0_win-x64.zip name: NDecrypt (.NET 6.0, Windows x64) -- path: NDecrypt.%APPVEYOR_BUILD_VERSION%_net6.0_linux-x64.zip +- path: NDecrypt-%APPVEYOR_REPO_COMMIT%_net6.0_linux-x64.zip name: NDecrypt (.NET 6.0, Linux x64) -- path: NDecrypt.%APPVEYOR_BUILD_VERSION%_net6.0_osx-x64.zip +- path: NDecrypt-%APPVEYOR_REPO_COMMIT%_net6.0_osx-x64.zip name: NDecrypt (.NET 6.0, OSX x64) \ No newline at end of file