mirror of
https://github.com/garraflavatra/rolens.git
synced 2024-11-22 10:25:48 +01:00
12 lines
437 B
PowerShell
Executable File
12 lines
437 B
PowerShell
Executable File
param([string]$platform)
|
|
|
|
mkdir releases
|
|
wails build -platform windows/amd64 -nsis
|
|
Remove-Item build\bin\Rolens.exe
|
|
Compress-Archive -Path build\bin\* -DestinationPath releases\rolens-$platform-amd64-installer.zip
|
|
|
|
Remove-Item -Recurse -Confirm:$false .\build\bin
|
|
wails build -platform windows/arm64 -nsis
|
|
Remove-Item build\bin\Rolens.exe
|
|
Compress-Archive -Path build\bin\* -DestinationPath releases\rolens-$platform-arm64-installer.zip
|