Skip to content

Commit

Permalink
update tkn chocolatey package to v0.22.0
Browse files Browse the repository at this point in the history
  • Loading branch information
danielhelfand authored and tekton-robot committed Feb 2, 2022
1 parent e72698a commit 29ed6c8
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -42,3 +42,6 @@ tags

#Mac
.DS_Store

# Chocolatey
*.nupkg
4 changes: 2 additions & 2 deletions choco/tektoncd-cli.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@
<package xmlns="http://schemas.microsoft.com/packaging/2015/06/nuspec.xsd">
<metadata>
<id>tektoncd-cli</id>
<version>0.21.0</version>
<version>0.22.0</version>
<title>Tekton CLI (tkn)</title>
<authors>Tekton authors, see https://github.com/tektoncd/cli/graphs/contributors</authors>
<projectUrl>https://github.com/tektoncd/cli</projectUrl>
<packageSourceUrl>https://github.com/tektoncd/cli/choco</packageSourceUrl>
<packageSourceUrl>https://github.com/tektoncd/cli/tree/main/choco</packageSourceUrl>
<licenseUrl>https://github.com/tektoncd/cli/blob/master/LICENSE</licenseUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<releaseNotes>https://github.com/tektoncd/cli/releases</releaseNotes>
Expand Down
4 changes: 2 additions & 2 deletions choco/tools/chocolateyinstall.ps1
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
$ErrorActionPreference = 'Stop';
$toolsDir = "$(Split-Path -parent $MyInvocation.MyCommand.Definition)"
$packageName = 'tektoncd-cli'
$url64 = 'https://github.com/tektoncd/cli/releases/download/v0.21.0/tkn_0.21.0_Windows_x86_64.zip'
$url64 = 'https://github.com/tektoncd/cli/releases/download/v0.22.0/tkn_0.22.0_Windows_x86_64.zip'

$packageArgs = @{
packageName = $packageName
unzipLocation = $toolsDir
url64bit = $url64
softwareName = 'tektoncd-cli*'
checksum64 = 'CFA6968E4C4BA4408043C62150886C40BA577FA34EA0C6D977FA8259D2098A26'
checksum64 = '21C1C0E0734EF44698B9D3A1540AE73FE6414CCF3255E5C5F21555FE34700A8B'
checksumType64 = 'sha256'
}

Expand Down

0 comments on commit 29ed6c8

Please sign in to comment.