Creates a chocolatey package for stackql
run the following command in powershell from the root of the repository:
.\update_checksum.ps1
To bump the version, update the version
and releaseNotes
fields in stackql/stackql.nuspec
.
<package xmlns="http://schemas.microsoft.com/packaging/2015/06/nuspec.xsd">
<metadata>
<id>stackql</id>
<version>0.6.32</version>
<releaseNotes>https://github.com/stackql/stackql/releases/tag/v0.6.32</releaseNotes>
...
To build locally, run the following command in powershell (as Administrator) from the root of the repository:
cd stackql; choco pack
To install locally run:
choco install stackql -dv -s "'.;https://chocolatey.org/api/v2/'"
To uninstall locally run:
choco uninstall stackql
New packages are automatically published to chocolatey.org via GitHub Actions when a merge to the main
branch is performed.