Skip to content

Latest commit

 

History

History
41 lines (27 loc) · 706 Bytes

RELEASE.md

File metadata and controls

41 lines (27 loc) · 706 Bytes

Releasing

Steps to Release a New Version

  • Make sure your local copy of the repository is up to date:

    git pull --rebase
  • Verify CI tests:

    make fmtcheck errcheck lint
  • Verify build and tests:

    make build test
  • Tag with annotation:

    git tag -a v0.0.0 -m "Release v0.0.0"
  • Verify the tag:

    git tag -l -n
  • Push the tag:

    git push --tags
  • A Release Github Action will automatically be triggered, and a draft release will be created.