You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
martian-chess/scripts/package-windows.ps1

11 lines
409 B
PowerShell

Copy-Item -Force "./target/x86_64-pc-windows-msvc/release/martian-chess.exe" "./platforms/windows/MartianChess.exe"
Copy-Item -Force "./lib/windows/*" "./platforms/windows/"
Copy-Item -Force -Recurse "./assets" "./platforms/windows"
$compress = @{
Path = "./platforms/windows/*"
CompressionLevel = "Optimal"
DestinationPath = "./packages/MartianChess-v1.0-windows.zip"
}
Compress-Archive -Force @compress