update build script

1. remove update generator from build script
2. add build version to release binary file name
3. remove installer script from deploy folder
This commit is contained in:
bao-qian
2016-01-02 01:47:13 +00:00
parent 4fcb8d5540
commit 6404aac986
28 changed files with 20 additions and 808 deletions

9
Deploy/build-release.ps1 Normal file
View File

@@ -0,0 +1,9 @@
$sourceDirectoryName = $env:APPVEYOR_BUILD_FOLDER + "\Output\Release"
$fileName = $env:APPVEYOR_BUILD_FOLDER + "\Wox-$env:APPVEYOR_BUILD_VERSION.zip"
$current_path = Convert-Path .
Write-Host "Current path: " + $current_path
Write-Host "Target path: " + $sourceDirectoryName
[Reflection.Assembly]::LoadWithPartialName("System.IO.Compression.FileSystem")
[System.IO.Compression.ZipFile]::CreateFromDirectory($sourceDirectoryName, $fileName)