Skip to content

Latest commit

 

History

History
19 lines (17 loc) · 412 Bytes

RELEASING.md

File metadata and controls

19 lines (17 loc) · 412 Bytes

Release process

Steps

  • Checkout the repository on the correct branch (main)
  • Run locally the command make VERSION=x.y.z release
  • Commit all the changes generated from the previous command:
    $ git add .
    $ git commit -s -m "release vX.Y.Z"
  • Add the release tag:
    $ git tag vX.Y.Z
  • Push it:
    $ git push origin vX.Y.Z