The full process for cutting a release is as follows:
-
Checkout a new branch:
git checkout -b 1.0.0
# 1.0.0-release -
Change the version in the package.json file:
"version": "0.9.9",
-
Add, and commit the changes, push up the branch, and open a PR:
git add .
git commit -m 'RELEASE 1.0.0'
git push --set-upstream origin HEAD
-
Open PR request
``
-
Once the PR is merged, checkout the
main
branch:git checkout main
-
Delete
main
branch (Optional):git branch -d 1.0.0
-
Make a new Git tag that matches the new version (make sure it is associated with the right commit SHA): FIXUP
git tag -a 1.0.0 -m "cut 1.0.0"
-
Push up the tag from
main
:git push origin 1.0.0
Download Asset Store Tools