You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently the process of updating the version of the packages is mostly manual. Before you start, first you need to make sure you have the permissions to publish the packages.
4
+
5
+
- While on the `main` branch.
6
+
- Perform a search an replace on all "package.json" files from the old version to the new. (ex `0.1.4` to `0.2.0`).
7
+
- Run `yarn` to update the lockfile.
8
+
- Commit the changes with a message containing the new version (ex: `0.2.0`).
9
+
- Create an annotated git tag by running `git tag -a v0.2.0` (replace with the version). The tag message can be the version again.
10
+
- Push commit and the tag `git push --follow-tags`.
11
+
- Publish the packages by running `yarn publish` (it will also build the packages).
12
+
- Then head to GitHub to draft a new release https://github.com/Mojang/ore-ui/releases/new
13
+
- Choose the tag and click the button "Auto-generate release notes"
0 commit comments