https://github.com/stackql/chocolatey-install
https://github.com/stackql/chocolatey-install
Last synced: 6 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/stackql/chocolatey-install
- Owner: stackql
- Created: 2023-02-03T05:52:24.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2024-04-15T04:45:12.000Z (almost 2 years ago)
- Last Synced: 2024-05-01T11:44:45.192Z (over 1 year ago)
- Language: PowerShell
- Size: 46.9 KB
- Stars: 6
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# chocolatey install for stackql
Creates a chocolatey package for stackql
## Update checksum in `chocolateyinstall.ps1`
run the following command in powershell from the root of the repository:
```powershell
.\update_checksum.ps1
```
## Bump the version
To bump the version, update the `version` and `releaseNotes` fields in `stackql/stackql.nuspec`.
```xml
stackql
0.8.175
https://github.com/stackql/stackql/releases/tag/v0.8.175
...
```
## Build Locally
To build locally, run the following command in powershell (as Administrator) from the root of the repository:
```powershell
cd stackql; choco pack
```
## Test Locally
To install locally run:
```powershell
choco install stackql -dv -s "'.;https://chocolatey.org/api/v2/'"
```
To uninstall locally run:
```powershell
choco uninstall stackql
```
## Publish via GitHub Actions
New packages are automatically published to chocolatey.org via GitHub Actions when a merge to the `main` branch is performed.