Skip to content

doggy8088/chocolatey-codegpt

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

14 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

CodeGPT: writes git commit messages or do a code review brief for you using ChatGPT AI

Build Status

Project Repo: https://github.com/appleboy/CodeGPT

How to build package

choco pack

How to test install locally

choco install codegpt -d -s .

How to test uninstall locally

choco uninstall codegpt -d -s .

How to publish new version

choco push codegpt.X.Y.Z.nupkg --source https://push.chocolatey.org/

How to update this package

  1. Edit tools/chocolateyinstall.ps1

    • $url64
    • checksum64
  2. Edit codegpt.nuspec

    • Update <version>
    • Update <releaseNotes> (reference from here)
  3. Test install

    Open Command Prompt with Administrative right

    choco pack
    choco install codegpt -d -s . -y
    choco uninstall codegpt -d -s .
  4. Publish to Chocolatey Gallery

    choco push codegpt.X.Y.Z.nupkg --source https://push.chocolatey.org/

How to build latest version of codegpt chocolatey package

.\build.ps1

This will generate a publish.ps1 file to help publish to the Chocolatey Gallery.