diff --git a/appveyor.yml b/appveyor.yml index fc5f96dd..65e73b1b 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -25,9 +25,12 @@ build_script: before_deploy: - 7z a "C:\projects\obs-websocket\build.zip" C:\projects\obs-websocket\release\* + - set PATH=%PATH%;"C:\\Program Files (x86)\\Inno Setup 5" + - iscc "C:\projects\obs-websocket\installer\installer.iss" deploy_script: - - ps: Push-AppveyorArtifact "C:\projects\obs-websocket\build.zip" -FileName "obs-websocket-$(git log --pretty=format:'%h' -n 1).zip" + - ps: Push-AppveyorArtifact "C:\projects\obs-websocket\build.zip" -FileName "obs-websocket-$(git log --pretty=format:'%h' -n 1)-Windows.zip" + - ps: Push-AppveyorArtifact "C:\projects\obs-websocket\installer\Output\obs-websocket-git-Windows-Installer.exe" -FileName "obs-websocket-$(git log --pretty=format:'%h' -n 1)-Windows-Installer.exe" test: off diff --git a/installer/installer.iss b/installer/installer.iss index 00b65e64..55d1d0a7 100644 --- a/installer/installer.iss +++ b/installer/installer.iss @@ -2,7 +2,7 @@ ; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES! #define MyAppName "obs-websocket" -#define MyAppVersion "4.3.3" +#define MyAppVersion "git" #define MyAppPublisher "Stephane Lepin" #define MyAppURL "http://github.com/Palakis/obs-websocket"