You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
328 B
15 lines
328 B
[CmdletBinding()]
|
|
param (
|
|
$Runtime = "linux-musl-x64"
|
|
)
|
|
|
|
$artifactsDir = "$PSScriptRoot\artifacts"
|
|
|
|
Remove-Item $artifactsDir -Recurse -Force -ErrorAction SilentlyContinue
|
|
|
|
Push-Location $PSScriptRoot\..
|
|
& ci\Publish.ps1 -NoSingleFile `
|
|
-OutputDir "$artifactsDir\recyclarr-$Runtime" `
|
|
-Runtime $Runtime
|
|
Pop-Location
|