Skip to content
Ilia Maslakov edited this page Aug 10, 2026 · 4 revisions

X.Y.Z is the version, for example 6.0.3.

  • Rename the open milestone Future release to vX.Y.Z.

  • Actions -> Create release notes -> Run workflow: milestone vX.Y.Z, all three boxes clear.

изображение
  • Read the notes on the Summary page of that run: every merged pull request of the milestone is there, the wording is right, and the short summary says what the release is. The same text is in the release-notes artifact.

  • Actions -> Create release notes -> Run workflow: milestone vX.Y.Z, tick Also commit the CHANGELOG.md section to the default branch.

  • Create the release tag:

    git checkout master && git pull --ff-only
    git tag -a vX.Y.Z -m "vX.Y.Z"
    git push origin vX.Y.Z
    
  • Actions -> Create release notes -> Run workflow: milestone vX.Y.Z, tick Also publish: notes into the release, summary onto the milestone and Also publish the page to the wiki.

  • Releases -> the vX.Y.Z draft -> Publish release.

Clone this wiki locally