bottom/deployment/windows/choco/chocolateyinstall.ps1.template
Clement Tsang b2a00d49f1
ci: Automatically build package files on release
Automatically builds packages for AUR, chocolatey, and homebrew on release.
2020-08-18 23:22:50 -04:00

21 lines
681 B
Plaintext

$ErrorActionPreference = 'Stop';
$toolsDir = "$(Split-Path -parent $MyInvocation.MyCommand.Definition)"
$url = 'https://github.com/ClementTsang/bottom/releases/download/$version/bottom_i686-pc-windows-msvc.zip'
$url64 = 'https://github.com/ClementTsang/bottom/releases/download/$version/bottom_x86_64-pc-windows-msvc.zip'
$packageArgs = @{
packageName = $env:ChocolateyPackageName
softwareName = 'bottom'
unzipLocation = $toolsDir
fileType = 'exe'
url = $url
url64bit = $url64
checksum = '$hash_32'
checksumType = 'sha1'
checksum64 = '$hash_64'
checksumType64= 'sha1'
}
Install-ChocolateyZipPackage @packageArgs