-
Notifications
You must be signed in to change notification settings - Fork 39
Release Process
Johann Levesque edited this page Apr 2, 2026
·
10 revisions
- Make sure packages version number are updated
- Make sure documentation has been updated (use CoPilot)
- Make a build and add it to release demo pages
- Run type workflow, merge PR and add the folder structure to release sources
git fetch upstream
Use if local develop branch already exists.
git checkout develop
git pull upstream develop
Use only if the branch does not exist locally.
git checkout -b develop upstream/develop
git tag vX.Y.Z
git push upstream vX.Y.Z
- Always tag from a clean, up-to-date develop branch.
- Always update main upstream to latest tag.
- Use semantic versioning for your tag name (e.g., v1.2.0).