Skip to content

Commit

Permalink
Update argo-workflows cli package to version 3.4.2
Browse files Browse the repository at this point in the history
  • Loading branch information
sgutwein committed Oct 24, 2022
1 parent 1ecfb95 commit a3c16cb
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions argo-workflows/argo-workflows.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<package xmlns="http://schemas.microsoft.com/packaging/2015/06/nuspec.xsd">
<metadata>
<id>argo-workflows</id>
<version>3.4.1-rc2</version>
<version>3.4.2</version>
<packageSourceUrl>https://github.com/sgutwein/chocolatey-packages</packageSourceUrl>
<owners>sgutwein</owners>
<title>argo-workflows (CLI)</title>
Expand All @@ -19,7 +19,7 @@
<tags>argo-workflows-cli argo-workflows</tags>
<summary>CLI for argo-workflows</summary>
<description>Installs the cli of argo-workflows.</description>
<releaseNotes>https://github.com/argoproj/argo-workflows/releases/tag/v3.4.1</releaseNotes>
<releaseNotes>https://github.com/argoproj/argo-workflows/releases/tag/v3.4.2</releaseNotes>
</metadata>
<files>
<file src="tools\**" target="tools" />
Expand Down
4 changes: 2 additions & 2 deletions argo-workflows/tools/chocolateyinstall.ps1
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
$ErrorActionPreference = 'Stop';
$toolsDir = "$(Split-Path -parent $MyInvocation.MyCommand.Definition)"
$url64 = 'https://github.com/argoproj/argo-workflows/releases/download/v3.4.1/argo-windows-amd64.exe.gz'
$url64 = 'https://github.com/argoproj/argo-workflows/releases/download/v3.4.2/argo-windows-amd64.exe.gz'
$packageArgs = @{
packageName = $env:ChocolateyPackageName
unzipLocation = $toolsDir
url64bit = $url64
softwareName = 'argo-workflows'
checksum64 = 'b65d795fb882643229f6862a82e5e7fc3324eeda24c77d01185c6a3c3c1b7753'
checksum64 = 'df128ddbb4b1323c4ffd40e5647f322cd9986157c0dafb2652159133b6dd9442'
checksumType64= 'sha256'
}
Install-ChocolateyZipPackage $packageName $url $toolsDir $url64 -checksum64 $checksum64 -checksumType64 $checksumType64
Expand Down

0 comments on commit a3c16cb

Please sign in to comment.