feat(packaging): add Chocolatey package for Windows#53
Merged
Conversation
- Create .nuspec manifest with package metadata - Create chocolateyInstall.ps1 that downloads x86/x86_64 binaries from GitHub Releases with SHA256 verification - Create chocolateyUninstall.ps1 for clean removal - Add package-choco CI job (runs on windows-latest, builds .nupkg, uploads to GitHub Release, optionally pushes to Chocolatey repo) - Update checksums job to include package-choco dependency - Add Chocolatey install instructions to README Closes #40
- Fix secret detection: move CHOCOLATEY_API_KEY check to job-level env so the if-condition evaluates correctly (step-level env is not available at if-evaluation time) - Replace deprecated licenseUrl with license element in .nuspec - Add VERIFICATION.txt per Chocolatey Community Repository guidelines
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
packaging/chocolatey/):.nuspecmanifest,chocolateyInstall.ps1(dual-arch with SHA256 verification),chocolateyUninstall.ps1package-chocoCI job that builds.nupkgonwindows-latest, uploads to GitHub Release, and optionally pushes to Chocolatey Community Repository (whenCHOCOLATEY_API_KEYsecret is set)checksumsjob to depend onpackage-chocochoco install sql-pipeinstructions to READMEAcceptance Criteria
.nuspecmanifest with correct metadatachocolateyInstall.ps1script that downloads the correct binary from GitHub Releaseschoco install sql-pipeinstalls the binary and it is available in PATHchoco uninstall sql-pipecleanly removes the binaryCloses #40