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.
11 lines
405 B
PowerShell
11 lines
405 B
PowerShell
Copy-Item -Force "./target/x86_64-pc-windows-msvc/release/acts-of-gods.exe" "./platforms/windows/ActsOfGods.exe"
|
|
Copy-Item -Force "./lib/windows/*" "./platforms/windows/"
|
|
Copy-Item -Force -Recurse "./assets" "./platforms/windows"
|
|
|
|
$compress = @{
|
|
Path = "./platforms/windows/*"
|
|
CompressionLevel = "Optimal"
|
|
DestinationPath = "./packages/ActsOfGods-alpha-windows.zip"
|
|
}
|
|
|
|
Compress-Archive -Force @compress |