-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
84ece8f
commit 04518b9
Showing
1 changed file
with
73 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,73 @@ | ||
# Env setup --------------- | ||
if ($PSScriptRoot -match '.+?\\Release\\?') { | ||
$dir = $PSScriptRoot + "\" | ||
} | ||
else { | ||
$dir = $PSScriptRoot + "\bin\Release" | ||
} | ||
|
||
Remove-Item -Force -Path ($dir + "\copy") -Recurse -ErrorAction SilentlyContinue | ||
Remove-Item -Force -Path ($dir + "\out\") -Recurse -ErrorAction SilentlyContinue | ||
New-Item -ItemType Directory -Force -Path ($dir + "\out\") | ||
|
||
foreach ($subdir in Get-ChildItem -Path $dir -Directory -Exclude "Out") | ||
{ | ||
if ((Get-ChildItem -Path $subdir -Filter *.dll).Length -gt 0) | ||
{ | ||
$pluginDir = $subdir | ||
} | ||
else | ||
{ | ||
$pluginDir = Get-Item ($subdir.FullName + "\BepInEx\plugins") | ||
} | ||
|
||
if (($subdir.BaseName.ToLower()) -eq "Patchers".ToLower()) | ||
{ | ||
$copy = $dir + "\copy\BepInEx\patchers" | ||
} | ||
elseif ((Get-ChildItem -Path $subdir -Filter *.dll).Length -gt 0) | ||
{ | ||
$copy = $dir + "\copy\BepInEx\plugins" | ||
} | ||
|
||
Write-Information -MessageData ("Using " + $pluginDir + " as plugin directory") | ||
|
||
$outdir = $dir + "\out\" + $subdir.BaseName | ||
New-Item -ItemType Directory -Force -Path $outdir | ||
|
||
# Create releases --------- | ||
function CreateZip ($pluginFile) | ||
{ | ||
Remove-Item -Force -Path ($dir + "\copy") -Recurse -ErrorAction SilentlyContinue | ||
New-Item -ItemType Directory -Force -Path $copy | ||
|
||
# the actual dll | ||
Copy-Item -Path $pluginFile.FullName -Destination $copy -Recurse -Force | ||
# the docs xml if it exists | ||
Copy-Item -Path ($pluginFile.DirectoryName + "\" + $pluginFile.BaseName + ".xml") -Destination $copy -Recurse -Force -ErrorAction Ignore | ||
Copy-Item -Path ($pluginFile.DirectoryName + "\" + $pluginFile.BaseName) -Destination $copy -Recurse -Force -ErrorAction Ignore | ||
|
||
# the replace removes .0 from the end of version up until it hits a non-0 or there are only 2 version parts remaining (e.g. v1.0 v1.0.1) | ||
$ver = (Get-ChildItem -Path ($copy) -Filter "*.dll" -Recurse -Force)[0].VersionInfo.FileVersion.ToString() -replace "^([\d+\.]+?\d+)[\.0]*$", '${1}' | ||
|
||
Compress-Archive -Path ($dir + "\copy\*") -Force -CompressionLevel "Optimal" -DestinationPath ($outdir + "\" + $pluginFile.BaseName + "_" + "v" + $ver + ".zip") | ||
} | ||
|
||
foreach ($pluginFile in Get-ChildItem -Path $pluginDir -Filter *.dll) | ||
{ | ||
try | ||
{ | ||
CreateZip ($pluginFile) | ||
} | ||
catch | ||
{ | ||
# retry | ||
CreateZip ($pluginFile) | ||
} | ||
} | ||
|
||
Compress-Archive -Path ($outdir + "\*") -Force -CompressionLevel "NoCompression" -DestinationPath ($dir + "\out\" + $subdir.BaseName + "_" + (Get-Date).ToString("yyyy.MM.dd") + ".zip") | ||
|
||
} | ||
|
||
Remove-Item -Force -Path ($dir + "\copy") -Recurse |