Skip to content

Latest commit

 

History

History
16 lines (14 loc) · 611 Bytes

RELEASE.md

File metadata and controls

16 lines (14 loc) · 611 Bytes

Releasing Setup Shorebird

These are the steps needed to create a new release:

  1. Create a new release in GitHub
    • Click on Releases -> Draft a new release
  2. Make sure to name the release v<VERSION> (e.g. v1.2.3)
  3. Click on Generate release notes
  4. Click on Publish release
  5. Update the current major version tag to point to the latest release. For example, if we just released v0.1.2, we'll need to make sure the v0 tag points to the same commit as v0.1.2
    # force update the latest release tag
    git tag -f v0 v0.1.2
    # push the tag
    git push origin :refs/tags/v0