diff --git a/AppVeyor/appveyor.yml b/AppVeyor/appveyor.yml index dd4278b..2cea32f 100644 --- a/AppVeyor/appveyor.yml +++ b/AppVeyor/appveyor.yml @@ -24,9 +24,6 @@ build_script: - cd .. - bash AppVeyor\make_installer.sh artifacts: - - path: KShare.exe - name: Shared link - - path: installer.exe - name: Installer - - path: portable.zip + - path: '*_v*.exe' + - path: '*_v*.zip' name: Portable version diff --git a/AppVeyor/make_installer.sh b/AppVeyor/make_installer.sh index e34ad32..094622e 100644 --- a/AppVeyor/make_installer.sh +++ b/AppVeyor/make_installer.sh @@ -55,5 +55,6 @@ echo ----------------- cat installer.iss.pattern.bottom >> installer.iss "C:\Program Files (x86)\Inno Setup 5\ISCC.exe" installer.iss -cp Output/setup.exe ../../installer.exe || exit 1 -cp portable.zip ../../ || exit 2 +cp Output/setup.exe ../../win_kshare_v${ver}_installer.exe || exit 1 +cp ../../KShare.exe ../../KShare_v${ver}.exe || exit 1 +cp portable.zip ../../win_kshare_v${ver}_portable.zip || exit 2