mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-07 19:57:07 +02:00
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:
9
Deploy/build-release.ps1
Normal file
9
Deploy/build-release.ps1
Normal 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)
|
||||
Reference in New Issue
Block a user