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
The GitHub Action will automatically publish the package to the npm registry.
70
+
Describe the change here.
71
+
EOF
72
+
```
73
+
74
+
Replace `patch` with `minor` or `major` when the change requires a larger semver bump. Keep the summary short and user-facing; it is used by Changesets when generating release notes.
75
+
76
+
Commit and push the changeset:
77
+
78
+
```sh
79
+
git add .changeset
80
+
git commit -m "chore: release"
81
+
git push origin HEAD --no-verify
82
+
```
83
+
84
+
## Version and publish
85
+
86
+
After the changeset lands on the release branch, run the configured package scripts when it is time to cut and publish the release:
0 commit comments