Skip to content

Commit

Permalink
Merge pull request #10 from stackql/feature/stackql-release-update
Browse files Browse the repository at this point in the history
new version 0.5.552
  • Loading branch information
jeffreyaven authored Dec 28, 2023
2 parents 4e7f763 + fef9274 commit 5f1bcf4
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 7 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/chocolatey-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
run: |
$xml = [xml](Get-Content stackql/stackql.nuspec)
$version = $xml.package.metadata.version
echo "::set-output name=version::$version"
echo "VERSION=$version" >> $GITHUB_ENV
- name: Create Chocolatey Package
run: |
Expand All @@ -30,7 +30,7 @@ jobs:

- name: Push Package to Chocolatey
run: |
choco push stackql/stackql.${{ steps.set_version.outputs.version }}.nupkg --source https://push.chocolatey.org/ --api-key ${{ secrets.CHOCOLATEY_API_KEY }}
choco push stackql/stackql.$env:VERSION.nupkg --source https://push.chocolatey.org/ --api-key ${{ secrets.CHOCOLATEY_API_KEY }}
env:
CHOCOLATEY_API_KEY: ${{ secrets.CHOCOLATEY_API_KEY }}


4 changes: 2 additions & 2 deletions stackql/stackql.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ This is a nuspec. It mostly adheres to https://docs.nuget.org/create/Nuspec-Refe
<package xmlns="http://schemas.microsoft.com/packaging/2015/06/nuspec.xsd">
<metadata>
<id>stackql</id>
<version>0.5.509</version>
<releaseNotes>https://github.com/stackql/stackql/releases/tag/v0.5.509</releaseNotes>
<version>0.5.552</version>
<releaseNotes>https://github.com/stackql/stackql/releases/tag/v0.5.552</releaseNotes>
<packageSourceUrl>https://github.com/stackql/chocolatey-install</packageSourceUrl>
<owners>stackql</owners>
<title>stackql (Install)</title>
Expand Down
5 changes: 3 additions & 2 deletions stackql/tools/chocolateyinstall.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,11 @@ $packageArgs = @{
fileType = 'MSI'
url64bit = $url64
softwareName = 'stackql*'
checksum64 = '60025e4479d5945c712230481004689fc38b68102423f3407330c90e28c07953'
checksum64 = '22e7b46790ee73abf375923819c36fc0abe5886f049c4ac1f03961d28243e2aa'
checksumType64 = 'sha256'
silentArgs = "/passive /l* stackql.log"
validExitCodes = @(0, 3010, 1641)
}

Install-ChocolateyPackage @packageArgs
Install-ChocolateyPackage @packageArgs

0 comments on commit 5f1bcf4

Please sign in to comment.