Skip to content

Commit

Permalink
Update argo-workflows cli package to version 3.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
sgutwein committed Sep 26, 2022
1 parent 876408d commit 4908cde
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 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.3.9</version>
<version>3.4.0</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.3.9</releaseNotes>
<releaseNotes>https://github.com/argoproj/argo-workflows/releases/tag/v3.4.0</releaseNotes>
</metadata>
<files>
<file src="tools\**" target="tools" />
Expand Down
5 changes: 2 additions & 3 deletions argo-workflows/tools/chocolateyinstall.ps1
Original file line number Diff line number Diff line change
@@ -1,14 +1,13 @@
$ErrorActionPreference = 'Stop';
$toolsDir = "$(Split-Path -parent $MyInvocation.MyCommand.Definition)"
$url64 = 'https://github.com/argoproj/argo-workflows/releases/download/v3.3.9/argo-windows-amd64.exe.gz'
$url64 = 'https://github.com/argoproj/argo-workflows/releases/download/v3.4.0/argo-windows-amd64.exe.gz'
$packageArgs = @{
packageName = $env:ChocolateyPackageName
unzipLocation = $toolsDir
fileType = 'EXE'
url64bit = $url64
softwareName = 'argo-workflows'
checksumType = 'sha256'
checksum64 = 'ea21e993e6df60f9494b793a733505c3d0141bff2f957729ca1f75a610fbeded'
checksum64 = 'dcdcd8c619db0a46c80c3c5f83760d9e76141ba0e7926be3d30bb5df7131a981'
checksumType64= 'sha256'
silentArgs = ''
validExitCodes= @(0)
Expand Down

0 comments on commit 4908cde

Please sign in to comment.