Skip to content

Branch Rules and Release Procedure

Sho HIROSE edited this page Mar 21, 2023 · 2 revisions

Branch Rules

  • main
    • released codebase
  • develop
    • codebase which is in development

Release Procedure

  1. create a pull request for develop to main
  2. waiting until approved at least once
  3. merging the pull request
  4. executing the following codes.
git checkout main
git pull origin main
git tag v0.0.0 # tag version follows semantic versioning.
git push origin v0.0.0
Clone this wiki locally