mirror of
https://github.com/garraflavatra/rolens.git
synced 2025-01-19 05:27:57 +00:00
10 lines
339 B
PowerShell
10 lines
339 B
PowerShell
|
param([string]$platform)
|
||
|
|
||
|
mkdir releases
|
||
|
wails build -platform windows/amd64
|
||
|
Compress-Archive -Path build\bin\* -DestinationPath releases\rolens-$platform-amd64.zip
|
||
|
|
||
|
Remove-Item -Recurse -Confirm:$false .\build\bin
|
||
|
wails build -platform windows/arm64
|
||
|
Compress-Archive -Path build\bin\* -DestinationPath releases\rolens-$platform-arm64.zip
|