crowdsec/make_chocolatey.ps1

20 lines
490 B
PowerShell
Raw Permalink Normal View History

2022-05-17 10:14:59 +00:00
param (
$version
)
if ($version.StartsWith("v"))
{
$version = $version.Substring(1)
}
#Pre-releases will be like 1.4.0-rc1, remove everything after the dash as it does not conform to the MSI versioning scheme
if ($version.Contains("-"))
{
$version = $version.Substring(0, $version.IndexOf("-"))
}
Set-Location .\windows\Chocolatey\crowdsec
Copy-Item ..\..\..\crowdsec_$version.msi tools\crowdsec.msi
2024-03-19 16:42:08 +00:00
choco pack --version $version
Copy-Item crowdsec.$version.nupkg ..\..\..\